🖼️טקסטורה

Properties that allows customization of item graphics

Make sure you're not using UPPERCASE or special characters in items names, namespaces, texture files (png) and model files (json)

Automatic generation

In order to tell ItemsAdder which texture/model use for an item you have to add the resource attribute. This is an example:

  resource:
    material: DIAMOND_SWORD
    generate: true
    textures:
    - item/example_item.png

material is the vanilla material this item will use as base.

generate tells to IA if it needs to generate the item model automatically based on textures you listed

textures is the list of textures IA will use to generate the model automatically.

Where do I put textures?

Textures you listed in the textures attribute must be placed in the right folder. So if you set textures like in the example and your namespace (is for example) myitems you will have to put example_item.png file inside this folder: plugins\ItemsAdder\data\resource_pack\assets\myitems\textures\item

If the path doesn't exists create all the folders needed.

You can avoid setting .png in the textures attribute, IA will recognize the file automatically

Use your own 3D custom model (.json file)

If you have a custom modelled sword or item you can tell IA not to generate the model automatically. This is an example:

  resource:
    material: DIAMOND_SWORD
    generate: false
    model_path: item/floating_sword

Where do I put my model?

Model you set in the model_pathattribute must be placed in the right folder. So if you set model_path like in the example and your namespace (is for example) myitems you will have to put floating_sword.json file inside this folder: plugins\ItemsAdder\data\resource_pack\assets\myitems\models\item

If the path doesn't exists create all the folders needed.

My textures are not working!

If your custom model textures are not showing you have to open your model file and fix the textures path. For example if you had this:

  {
  "textures": {
    "4": "item/alchemy_candles/white_candle",
    "6": "item/alchemy_candles/candle_top",
    "7": "item/alchemy_candles/red_candle",
    "8": "item/alchemy_candles/fire"
  },

You have to change it to this (your_namespace is your namespace folder):

{
  "textures": {
    "4": "your_namespace:item/alchemy_candles/white_candle",
    "6": "your_namespace:item/alchemy_candles/candle_top",
    "7": "your_namespace:item/alchemy_candles/red_candle",
    "8": "your_namespace:item/alchemy_candles/fire"
  },

Transparent textures (glass and similar)

pageטקסטורות שקופות ורהיטים

Manually specify custom_model_data

If you want to force the usage of a defined custom_model_data (CustomModelData) you can:

    resource:
      material: CLOCK
      model_id: 4000
      generate: false
      model_path: "item/multimeter"

You also have to create the model file named "multimeter" (in this example) inside this folder: assets\YOUR_NAMESPACE\models\item

You can also tell IA to automatically generate the model based on the texture:

info:
  namespace: slimefun
items:
  carbonado:
    resource:
      material: PLAYER_HEAD
      generate: true
      model_id: 4000
      textures:
      - slimefun/carbonado.png

IMPORTANT

If you previously created this item and already used /iazip command and now you change the model_id: it's very important to run the command /iacleancache items to remove unused IDs and update the changed ID.

Last updated