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.
Thank you for your report!
However, this issue has been temporarily closed as Awaiting Response.
Is this still an issue in the latest version? If yes, could you please add it to the affected versions (or mention it if you are not the reporter)?
This ticket will automatically reopen when you reply.
Quick Links:
๐ Issue Guidelines โ ๐ฌ Mojang Support โ ๐ Project Summary โ ๐ง Suggestions โ ๐ Minecraft Wiki