-
Notifications
You must be signed in to change notification settings - Fork 22
Configuration Guide
Natan Vieira edited this page Nov 30, 2023
·
17 revisions
...This document is still being written...
- Container Properties
- Affects Player Interaction
- Structure Modification
- Internal Behavior
- Extension to External Features
Changes the initial title of the inventory.
@Override
public void onInit(ViewConfigBuilder config) {
config.title("Write something");
}
Changes the initial title of the inventory.
@Override
public void onInit(ViewConfigBuilder config) {
config.title(Component.text("Write something")
.color(NamedTextColor.BLUE));
}
Sets the size of the inventory.
@Override
public void onInit(ViewConfigBuilder config) {
config.size(4); // rows
config.size(45); // full size
}
Sets the size of the inventory to the maximum possible,
based on the inventory type.
@Override
public void onInit(ViewConfigBuilder config) {
config.maxSize();
}