#item disappear
18 messages · Page 1 of 1 (latest)
Can you give more information? What did you change to make it disappear? Or was it always like that?
i want my model to be on a trident
so i change it from axe to trident
"textures": {
"layer0": "item/trident"
},
"overrides": [
{ "predicate": {"custom_model_data": 1000}, "model": "item/stormbreaker"}
]
}```
this is trident.json
i think that file is what i changed /\
Unfortunately the trident model is weirdly hardcoded.
Also, even if that were on any other item, you would be missing the "parent": "item/generated" (or whatever parent the item has) part
That missing parent is probably why it's invisible, since it has no model information whatsoever it won't load anything.
And since the trident is weirdly hardcoded it ignores the overrides section iirc (don't quote me on that last part, tridents are weird)
You meen it needs to be like this: ```{
"parent": "item/generated"
"textures": {
"layer0": "item/iron_axe"
},
"overrides": [
{ "predicate": {"custom_model_data": 1000}, "model": "item/stormbreaker"}
]
}```
I mean that one parent line, yes
Failed to load model minecraft:models/item/iron_axe.json
that the error
it looks like that
and the reason is in the message right below or above that
(TL;DR you are missing a comma at the end of the parent line)
You can use jsonlint.com to validate all your jsons to check for syntax errors by the way