I am following https://wiki.bedrock.dev/guide/custom-item.html
which works great for experimental item, but when I update to "format_version": "1.16.1" in items/ectoplasm.json I lose the inventory texture, and name is incorrect.. I have fixed the name issue by updating RP/texts/en_US.lang to include .name.. but I can't figure out what is wrong with the texture..
Error tells me ectoplasm requires a icon atlas or icon texture
BP/items/ectoplasm.json
{
"format_version": "1.16.1",
"minecraft:item": {
"description": {
"identifier": "wiki:ectoplasm",
"category": "Items"
},
"components":{
"minecraft:max_stack_size": 16,
"minecraft:icon" : {
"texture": "wiki.ectoplasm"
}
}
}
}
RP/textures/item_texture.json
{
"resource_pack_name": "Ghostly Guide",
"texture_name": "atlas.items",
"texture_data": {
"wiki.ectoplasm": {
"textures": "textures/items/ectoplasm"
}
}
}
Id prefer to be able to create addon in non-experimental mode so I can upload to realms. If this is not true and you can upload experimental addons please let me know.