Added random texture rotation for some terrain blocks

This commit is contained in:
Forstride 2016-02-16 00:50:54 -05:00
parent 37d48deaf5
commit 77077385f0
5 changed files with 32 additions and 7 deletions

View File

@ -1,5 +1,10 @@
{
"variants": {
"normal": { "model": "biomesoplenty:ash_block" }
"normal": [
{ "model": "biomesoplenty:ash_block" },
{ "model": "biomesoplenty:ash_block", "y": 90 },
{ "model": "biomesoplenty:ash_block", "y": 180 },
{ "model": "biomesoplenty:ash_block", "y": 270 }
]
}
}

View File

@ -1,5 +1,10 @@
{
"variants": {
"normal": { "model": "biomesoplenty:dried_sand" }
"normal": [
{ "model": "biomesoplenty:dried_sand" },
{ "model": "biomesoplenty:dried_sand", "y": 90 },
{ "model": "biomesoplenty:dried_sand", "y": 180 },
{ "model": "biomesoplenty:dried_sand", "y": 270 }
]
}
}

View File

@ -1,5 +1,10 @@
{
"variants": {
"normal": { "model": "biomesoplenty:flesh" }
"normal": [
{ "model": "biomesoplenty:flesh" },
{ "model": "biomesoplenty:flesh", "y": 90 },
{ "model": "biomesoplenty:flesh", "y": 180 },
{ "model": "biomesoplenty:flesh", "y": 270 }
]
}
}

View File

@ -1,5 +1,10 @@
{
"variants": {
"variant=mud": { "model": "biomesoplenty:mud" }
"variant=mud": [
{ "model": "biomesoplenty:mud" },
{ "model": "biomesoplenty:mud", "y": 90 },
{ "model": "biomesoplenty:mud", "y": 180 },
{ "model": "biomesoplenty:mud", "y": 270 }
]
}
}
}

View File

@ -1,5 +1,10 @@
{
"variants": {
"variant=quicksand": { "model": "biomesoplenty:quicksand" }
"variant=quicksand": [
{ "model": "biomesoplenty:quicksand" },
{ "model": "biomesoplenty:quicksand", "y": 90 },
{ "model": "biomesoplenty:quicksand", "y": 180 },
{ "model": "biomesoplenty:quicksand", "y": 270 }
]
}
}
}