fix culling on magma blocks

This commit is contained in:
Pyritie 2026-02-03 21:17:06 +00:00
parent 54145ff6c3
commit 535fe8ff2d

View file

@ -6,12 +6,36 @@
"to": [16, 16, 16], "to": [16, 16, 16],
"forge_data": { "block_light": 15, "sky_light": 15 }, "forge_data": { "block_light": 15, "sky_light": 15 },
"faces": { "faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#0"}, "north": {
"east": {"uv": [0, 0, 16, 16], "texture": "#0"}, "uv": [ 0, 0, 16, 16 ],
"south": {"uv": [0, 0, 16, 16], "texture": "#0"}, "texture": "#0",
"west": {"uv": [0, 0, 16, 16], "texture": "#0"}, "cullface": "north"
"up": {"uv": [0, 0, 16, 16], "texture": "#0"}, },
"down": {"uv": [0, 0, 16, 16], "texture": "#0"} "east": {
"uv": [ 0, 0, 16, 16 ],
"texture": "#0",
"cullface": "east"
},
"south": {
"uv": [ 0, 0, 16, 16 ],
"texture": "#0",
"cullface": "south"
},
"west": {
"uv": [ 0, 0, 16, 16 ],
"texture": "#0",
"cullface": "west"
},
"up": {
"uv": [ 0, 0, 16, 16 ],
"texture": "#0",
"cullface": "up"
},
"down": {
"uv": [ 0, 0, 16, 16 ],
"texture": "#0",
"cullface": "down"
}
} }
} }
], ],