Compatibility
Minecraft: Java Edition
1.20.x
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed ARR
Published last month
Updated 2 hours ago
An API to add inventory tabs. Natively for 1.20.1 but should work on every version.
Made for SkillZ and based on Globox_Z's LibZ I stripped out the other code and added sidebar functionality.
Developer Tutorial
- Create a tab class by extending
InventoryTab
MutableText tooltip
: The tooltip when hovered@Nullable Identifier icon
: The icon for the tab (If null you can specify an item usinggetItemStack
or custom rendering)int preferedPos
: Preferred index of the tabboolean customRendering
: If specified you have to overridecustomRender
in the tab classClass... screenClasses
: All the classes that this tab is able to handle (Most cases only need 1)
- Register said tab with
TabAPI.registerInventoryTab
orTabAPI.registerSideInventoryTab
in your mods init