#HELP
21 messages · Page 1 of 1 (latest)
!faq output
(Result for "output-log")
The output log will show you errors related to resource packs in Minecraft: Java Edition. Here is how you can enable it: https://i.imgur.com/WbQZa6k.png
(PS: Optifine likes to hide vanilla errors/warnings for some weird reason, so always load the game up without it if you don't need it for your pack to work!)
what do i do now
Check the default carved pumpkin json in models/item of the default pack.
You need that exact same information (not more, not less) before your "overrides" section. (+/- commas and brackets for a valid .json syntax)
Cause currently you are telling the game to generate a 1 unit thick model based on the texture textures/item/carved_pumpkin.png .
But neither is there a texture with that name there nor does a carved pumpkin have a flat model like that.
"parent": "block/carved_pumpkin"
}```
This is what the default carved pumpkin json looks like.
You need that exact information before your "overrides" section.
ok tysm
appriciate it
when i add it it just turns every custom carved pumpkin becomes untextured the regular carved pumpkin is 3d but still untextured.
It can't be "untextured" if you replaced everything before the overrides section with what I sent.
Unless you broke the .json syntax ofc.
now it works but every custom carved pumpkin is a carved pumpkin too
send your current carved_pumpkin.json file
kk
{
"parent": "block/carved_pumpkin"
}
"overrides": [
{"predicate": {"custom_model_data":1}, "model": "block/custom/hat"},
{"predicate": {"custom_model_data":2}, "model":
"block/custom/froghead"},
{"predicate": {"custom_model_data":3}, "model":
"block/custom/jam"},
{"predicate": {"custom_model_data":4}, "model":
"block/custom/jam_stack"}
]
}
dont ask bout the names
for it to be valid .json you need to add a comma and remove that bracket