Re: how to exchange my models and vanilla models in minecraft resourcepack? ( Help and Hurry Thanks. )
Posted: 25 Jul 2019, 18:36
It looks like from the error that you've written the blockstate file incorrectly and it just can't find the models.
Your block model JSON files should be in /assets/minecraft/models/block and the blockstate file should be similar to the vanilla file:
Your block model JSON files should be in /assets/minecraft/models/block and the blockstate file should be similar to the vanilla file:
Code: Select all
{
"variants": {
"facing=south": { "model": "block/white_glazed_terracotta" },
"facing=west": { "model": "block/white_glazed_terracotta", "y": 90 },
"facing=north": { "model": "block/white_glazed_terracotta", "y": 180 },
"facing=east": { "model": "block/white_glazed_terracotta", "y": 270 }
}
}