1.21.4+ - Modern Items Creation
This requires ItemsAdder 4.0.13 and Minecraft 1.21.4+ (both client and server).
What is the modern item method?
This is a new way to create items graphics. The old resource property is replaced by the new property graphics which is easier to use and has more features.
resource property for now will stay and will still work fine.
You should and must continue using it if your server accepts 1.21.3 and lower clients, otherwise they won't see the graphics of the item!
Generating items automatically
material property is not mandatory anymore. paper will be used by default.
From a texture
Automatically generate the modern item + model from a texture.
modern_texture:
name: Modern Texture
graphics:
texture: item/modern_textureFrom a model
Automatically generate the modern item and use a specific model file.
Block from textures
In this case ItemsAdder automatically detects you want to create a block (because it has the block behaviour) so the parent will automatically be block/cube.
If you do not specify the block behaviour, it would use the paper parent which is minecraft:item/generated.
Block from a single texture
Automatically generate the modern item and use a specific model file (in this case it generates a multi face block).
Block from a specific parent (cross for example)
cross for example)Automatically generate the modern item + model from textures (in this case it generates a multi face block).
In this case I set a custom parent for the model to be generated. I can specify the textures to be linked to the cross template in this case.
You can even just set texture instead, since the vanilla block/cross model has only one layer (cross), so ItemsAdder will automatically assign the texture to it.
Bow from textures
Bow from models
Fishing rod from textures
Fishing rod from models
Crossbow from textures
You can create as many pulling_ states as you want.
Crossbow from models
You can create as many pulling_ states as you want.
Trident from a model
Shield from a model
Other optional properties
Material
Icon
Show a different texture on the inventory slots compared to the in-game appearance.
Disable hand animation on item swap
Experts configuration
item_model
item_modelManually handling the item model on your own using the new 1.21.4 format.
Templates and variants
You can make variants of an item pretty easily. Variants inherit everything from a template item (that won't be available ingame).
Last updated
Was this helpful?