Example of a item
assets\coreextensions\models\item\custom_item.json
{
"parent": "item/generated",
"textures": {
"layer0": "coreextensions:item/custom_item"
}
}
This JSON file defines how the custom item appears in the player's inventory. The "parent" specifies the model that this item should inherit from, and the "textures" section defines the texture used for the item's appearance.
The corresponding texture file should be placed in the following directory:
Texture File:
assets\coreextensions\textures\item\custom_item.png
Make sure that the texture file is placed in the specified directory within your resource pack to define the appearance of your custom item in the game.
Last updated