PhysicalConnectivity/src/main/resources/assets/phycon/models/block/cable_side.json

48 lines
768 B
JSON
Raw Normal View History

2019-10-28 15:53:47 +00:00
{
"parent": "block/block",
"textures": {
2021-03-14 18:07:56 +00:00
"side": "phycon:block/cable/color/straight",
"particle": "#side"
},
2019-10-28 15:53:47 +00:00
"elements": [
{
"from": [6, 0, 6],
"to": [10, 6, 10],
"faces": {
"north": { "texture": "#side" },
"south": { "texture": "#side" },
"west": { "texture": "#side" },
"east": { "texture": "#side" }
}
},
{
"from": [7, 6, 6],
"to": [9, 7, 7],
"faces": {
"north": {"texture": "#side"}
}
},
{
"from": [7, 6, 9],
"to": [9, 7, 10],
"faces": {
"south": {"texture": "#side"}
}
},
{
"from": [6, 6, 7],
"to": [7, 7, 9],
"faces": {
"west": {"texture": "#side"}
}
},
{
"from": [9, 6, 7],
"to": [10, 7, 9],
"faces": {
"east": {"texture": "#side"}
2019-10-28 15:53:47 +00:00
}
}
]
}