1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
"ambientocclusion": false,
"textures": {
"shelf": "block/red_mushroom_shelf",
"cross": "block/red_mushrooms_large",
"particle": "block/red_mushroom"
},
"elements": [
{
"from": [-8, -5, -8],
"to": [24, -5, 24],
"faces": {
"up": {"uv": [0, 0, 16, 16], "texture": "#shelf"},
"down": {"uv": [0, 16, 16, 0], "texture": "#shelf"}
}
},
{
"from": [-8, -10, -8],
"to": [24, -10, 24],
"faces": {
"up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#shelf"},
"down": {"uv": [16, 0, 0, 16], "rotation": 270, "texture": "#shelf"}
}
},
{
"from": [-8, -13, -8],
"to": [24, -13, 24],
"faces": {
"up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#shelf"},
"down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#shelf"}
}
},
{ "from": [ 0.8, 0, 8 ],
"to": [ 15.2, 32, 8 ],
"rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45},
"shade": false,
"faces": {
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }
}
},
{ "from": [ 8, 0, 0.8 ],
"to": [ 8, 32, 15.2 ],
"rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45},
"shade": false,
"faces": {
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }
}
}
]
}
|