1.21.4+ - Modern Items Creation

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.

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_texture

From 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)

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

Manually 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?