PhysicalConnectivity/src/main/resources/assets/phycon/models/item/network_interface.json

29 lines
641 B
JSON
Raw Normal View History

2021-02-14 17:28:59 +00:00
{
"parent": "block/block",
"display": {
"firstperson_righthand": {
2021-03-12 22:13:10 +00:00
"rotation": [ 0, 215, 0 ],
"translation": [ 3, 0, -3 ],
"scale": [ 0.40, 0.40, 0.40 ]
2021-02-14 17:28:59 +00:00
}
},
2021-03-12 22:13:10 +00:00
"textures": {
"front": "phycon:block/interface_front",
"back": "phycon:block/switch"
},
2021-02-14 17:28:59 +00:00
"elements": [
{
2021-03-12 22:13:10 +00:00
"from": [14, 2, 2],
"to": [16, 14, 14],
2021-02-14 17:28:59 +00:00
"faces": {
2021-03-12 22:13:10 +00:00
"down": { "texture": "#back" },
"up": { "texture": "#back" },
"north": { "texture": "#back" },
"south": { "texture": "#back" },
"west": { "texture": "#back" },
"east": { "texture": "#front" }
2021-02-14 17:28:59 +00:00
}
}
]
2021-03-12 22:13:10 +00:00
}