configuration guide - DevNatan/inventory-framework GitHub Wiki

...This document is still being written...

Container Properties

title(String)

Changes the initial title of the inventory.

Preview
@Override
public void onInit(ViewConfigBuilder config) {
    config.title("Write something");
}

title(net.kyori.adventure.text.Component)

Changes the initial title of the inventory.

Preview
@Override
public void onInit(ViewConfigBuilder config) {
    config.title(Component.text("Write something")
                    .color(NamedTextColor.BLUE));
}

size(int)

Sets the size of the inventory.

Preview
@Override
public void onInit(ViewConfigBuilder config) {
    config.size(4); // rows
    config.size(45); // full size
}

maxSize()

Sets the size of the inventory to the maximum possible,
based on the inventory type.

Preview
@Override
public void onInit(ViewConfigBuilder config) {
    config.maxSize();
}

Affects Player Interaction

Structure Modification

Internal Behavior

Extension to External Features

⚠️ **GitHub.com Fallback** ⚠️