Disk drive model without rotation

This commit is contained in:
Raoul Van den Berge
2016-10-22 23:58:36 +02:00
parent 3c9be94f2a
commit cee831cf6a
6 changed files with 178 additions and 47 deletions

View File

@@ -1,42 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "cube",
"textures": {
"particle": "refinedstorage:blocks/disk_drive",
"down": "refinedstorage:blocks/disk_drive_bottom",
"up": "refinedstorage:blocks/disk_drive_top",
"north": "refinedstorage:blocks/disk_drive",
"east": "refinedstorage:blocks/disk_drive_side",
"south": "refinedstorage:blocks/disk_drive_side",
"west": "refinedstorage:blocks/disk_drive_side"
}
},
"variants": {
"inventory": [
{
"y": 0
}
],
"direction": {
"north": {
"y": 0
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
},
"up": {
"x": 270
},
"down": {
"x": 90
}
}
}
}

View File

@@ -0,0 +1,50 @@
{
"parent": "block/block",
"textures": {
"particle": "refinedstorage:blocks/disk_drive",
"front": "refinedstorage:blocks/disk_drive",
"bottom": "refinedstorage:blocks/disk_drive_bottom",
"top": "refinedstorage:blocks/disk_drive_top",
"side": "refinedstorage:blocks/disk_drive_side"
},
"elements": [
{
"from": [
0,
0,
0
],
"to": [
16,
16,
16
],
"faces": {
"down": {
"texture": "#bottom",
"cullface": "down"
},
"up": {
"texture": "#top",
"cullface": "up"
},
"north": {
"texture": "#front",
"cullface": "north"
},
"south": {
"texture": "#side",
"cullface": "south"
},
"west": {
"texture": "#side",
"cullface": "west"
},
"east": {
"texture": "#side",
"cullface": "east"
}
}
}
]
}