Elements in a model can only exist between -16 and +32 on every axis. Right in the first element you have stuff going out to -24, which is too low for Minecraft to handle. You'll need to resize your model to be within the boundaries the game has set.
This model loads up as the pink-black no-texture cube. I can't see any mistakes in the code. Help?
Elements in a model can only exist between -16 and +32 on every axis. Right in the first element you have stuff going out to -24, which is too low for Minecraft to handle. You'll need to resize your model to be within the boundaries the game has set.
I hope that helps you.
I thought elements could go to 32 in both directions. Well, thanks, I changed it and now it works fine.
They can go up to 32 in all directions, yes. They cannot go down to -32 in any direction. Just -16, which is the lower limit.
I'm happy you got it working!
I've ran into the same problem again, with different model.
I think the elements don't go over 32 or below -16 anywhere, but this a long code, and I'm not really sure...
Isn't there like a program that would check the code for mistakes like that?
This is the code
https://pastebin.com/w0UcSbXC
https://jsonlint.com is exactly what you're asking for and should always be your first stop for any and all .json file-related problems.
In particular, it tells you that you've got an extra comma at the end of lines 5774 and 5802. Easy stuff to fix! XD
I hope that helps you.
It helped, thanks!