Creating & Editing Menus
Once you’ve finished installing sheets, you can create and test menus
Menu Structure
Each menu is defined with a configuration file (menu_name.yml
) inside the Sheets/menus folder and follows a structured format in YAML. Here's a breakdown of the key components of a menu:
Title
Description: The title displayed at the top of the menu.
Type: String
Optional: false
Example:
Content
Description: The content only bedrock users see below the title
Type: String
Optional: true
Example:
Size
Description: The size of the menu (must be a multiple of 9)
Type: Integer
Default: 27
Optional: false
Example:
Commands
Description: A list of commands that can be executed to open the menu
Type: List of strings
Optional: true
Example:
Permission
Description: A permission string required to open the menu and execute the menu commands
Type: String
Optional: true
Example:
Filler
Description: Items used to fill empty slots in the menu, only for java guis.
Type: Item
Optional: true
Example:
Buttons
Description: Defines clickable items in the menu
Type: List of buttons
Optional: false
See individual button properties below here.
Example Menu
Last updated