Minecraft-bedrock-json-schemas
Minecraft-bedrock-json-schemas copied to clipboard
minecraft:icon component autocomplete error
When using the autocomplete format for the minecraft:icon component on items it gives you the wrong format for the component. Autocomplete format:
"minecraft:icon": {
"textures": {
"default": "stick"
}
}
That format does not work and just gives the item no texture. This format that I found does work:
"minecraft:icon": {
"texture": "stick"
}
Minecraft Bedrock Version: 1.20.73 Extension Version: 7.0.42 File format version: 1.20.50
Blockception only supports the latest format. The "incorrect one" actually works from 1.20.70+. You are recommended to update your files accordingly or ignore the schema error.
Thoughts? @DaanV2
Tested this in 1.20.81 and this worked for me:
"minecraft:icon": {
"textures": {
"default": "stick"
}
}
Anything else didn't work for me, or Minecraft threw errors. Im closing this for now as works as intentend
Found that the following also still works:
"minecraft:icon": "stick",