From 535fe8ff2d91807a4e027a7c8d26d93d99eba99a Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 3 Feb 2026 21:17:06 +0000 Subject: [PATCH] fix culling on magma blocks --- .../tfc/models/block/rock/magma/magma.json | 36 +++++++++++++++---- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/kubejs/assets/tfc/models/block/rock/magma/magma.json b/kubejs/assets/tfc/models/block/rock/magma/magma.json index 9a3d09c75..4c497183b 100644 --- a/kubejs/assets/tfc/models/block/rock/magma/magma.json +++ b/kubejs/assets/tfc/models/block/rock/magma/magma.json @@ -6,12 +6,36 @@ "to": [16, 16, 16], "forge_data": { "block_light": 15, "sky_light": 15 }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + "north": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#0", + "cullface": "north" + }, + "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" + } } } ],