Alloy furnace - Now aware of redstone power

It doesn't do anything with it yet.
This commit is contained in:
Emmanuel BENOîT 2016-06-25 09:18:17 +02:00
parent 258d8b417e
commit 3cd9d5719c
3 changed files with 71 additions and 20 deletions
src/resources/assets/mmm/blockstates/tech/base/alloy_furnace

View file

@ -1,8 +1,12 @@
{
"variants": {
"facing=north": { "model": "mmm:tech/base/alloy_furnace/active" },
"facing=east": { "model": "mmm:tech/base/alloy_furnace/active", "y": 90 },
"facing=south": { "model": "mmm:tech/base/alloy_furnace/active", "y": 180 },
"facing=west": { "model": "mmm:tech/base/alloy_furnace/active", "y": 270 }
"facing=north,powered=true": { "model": "mmm:tech/base/alloy_furnace/active" },
"facing=north,powered=false": { "model": "mmm:tech/base/alloy_furnace/active" },
"facing=east,powered=true": { "model": "mmm:tech/base/alloy_furnace/active", "y": 90 },
"facing=east,powered=false": { "model": "mmm:tech/base/alloy_furnace/active", "y": 90 },
"facing=south,powered=true": { "model": "mmm:tech/base/alloy_furnace/active", "y": 180 },
"facing=south,powered=false": { "model": "mmm:tech/base/alloy_furnace/active", "y": 180 },
"facing=west,powered=true": { "model": "mmm:tech/base/alloy_furnace/active", "y": 270 },
"facing=west,powered=false": { "model": "mmm:tech/base/alloy_furnace/active", "y": 270 }
}
}

View file

@ -1,8 +1,12 @@
{
"variants": {
"facing=north": { "model": "mmm:tech/base/alloy_furnace/inactive" },
"facing=east": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 90 },
"facing=south": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 180 },
"facing=west": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 270 }
"facing=north,powered=true": { "model": "mmm:tech/base/alloy_furnace/inactive" },
"facing=north,powered=false": { "model": "mmm:tech/base/alloy_furnace/inactive" },
"facing=east,powered=true": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 90 },
"facing=east,powered=false": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 90 },
"facing=south,powered=true": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 180 },
"facing=south,powered=false": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 180 },
"facing=west,powered=true": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 270 },
"facing=west,powered=false": { "model": "mmm:tech/base/alloy_furnace/inactive", "y": 270 }
}
}