1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"textures": {
"particle": "block/air"
},
"elements": [
{
"from": [0, 0, 13],
"to": [16, 16, 16],
"faces": {
"north": {"uv": [0, 16, 16, 0], "texture": "#texture"},
"east": {"uv": [0, 0, 3, 16], "rotation": 180, "texture": "#texture", "cullface": "east"},
"south": {"uv": [16, 16, 0, 0], "texture": "#texture", "cullface": "south"},
"west": {"uv": [13, 0, 16, 16], "rotation": 180, "texture": "#texture", "cullface": "west"},
"up": {"uv": [0, 13, 16, 16], "rotation": 180, "texture": "#texture", "cullface": "up"},
"down": {"uv": [0, 0, 16, 3], "rotation": 180, "texture": "#texture", "cullface": "down"}
}
}
]
}
|