Class ItemGroupEvents
java.lang.Object
net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents
Holds events related to
ItemGroups.- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfacestatic interface -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Event<ItemGroupEvents.ModifyEntriesAll>This event allows the entries of any item group to be modified. -
Method Summary
Modifier and TypeMethodDescriptionstatic Event<ItemGroupEvents.ModifyEntries>modifyEntriesEvent(ItemGroup itemGroup) Returns the modify entries event for a specific item group.static Event<ItemGroupEvents.ModifyEntries>modifyEntriesEvent(Identifier groupId) Returns the modify entries event for a specific item group.
-
Field Details
-
MODIFY_ENTRIES_ALL
This event allows the entries of any item group to be modified. If you know beforehand which item group you'd like to modify, usemodifyEntriesEvent(ItemGroup)ormodifyEntriesEvent(Identifier)instead. This event is invoked after those two more specific events.
-
-
Method Details
-
modifyEntriesEvent
Returns the modify entries event for a specific item group.- Parameters:
itemGroup- the item group to modify- Returns:
- the event
-
modifyEntriesEvent
Returns the modify entries event for a specific item group. This uses the group ID and is suitable for modifying a modded item group that might not exist.- Parameters:
groupId- the ID of the item group to modify- Returns:
- the event
-