Uploaded image for project: 'Minecraft (Bedrock codebase)'
  1. Minecraft (Bedrock codebase)
  2. MCPE-180567

Invisibile Icon on Trimmable Custom Armor

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • None
    • 1.20.73 Hotfix
    • None
    • Survival
    • Unconfirmed
    • Multiple

      Partner Rank:
      3
      Partner Team Reporting:
      Red Eagle Studios

      Currently its possible to implement custom trimmable armors as in version format version 1.20.70. The trimmed custom armor will have its icon automatically being trimmed too, but theres a issue in the code side.

      Texture that set in `minecraft:icon` should be match with the item identifier WITHOUT namespace, for example:

      item identifier: namespace:custom_armor

      "minecraft:icon": {
       "textures": {
        "default": "namespace:custom_armor"
       }
      }
      

      with item_texture.json defined as:

      "namespace:custom_armor": {
       "textures": "textures/items/custom_armor"
      }
      

      This will result invisible icon when item getting trimmed.

       

      However the current way to make it works only through removing namespace from item_texture.json and minecraft:icon, which is:
      item identifier: namespace:custom_armor

      "minecraft:icon": {
       "textures": {
        "default": "custom_armor"
       }
      }
      

      with item_texture.json defined as:

      "custom_armor": {
       "textures": "textures/items/custom_armor"
      }
      

      This will result in the custom armor icon getting trimmed too.

      But this solution is not available for Marketplace Addons project because we need to set namespace on the item_texture.json.

            DevilLord41 Darius Ellert Klaus
            Votes:
            2 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: