From 54a645324a072d64cfdd3fe29481b3ac68289177 Mon Sep 17 00:00:00 2001 From: poq <120293384+poqbox@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:43:35 -0400 Subject: [PATCH] Fixed cullface for wall hanging signs Replaced "cullface": "west" with "cullface": "east" for the east face --- .../minecraft/models/block/template_wall_hanging_sign.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/assets/minecraft/models/block/template_wall_hanging_sign.json b/src/main/resources/assets/minecraft/models/block/template_wall_hanging_sign.json index db22bded..a88d5600 100644 --- a/src/main/resources/assets/minecraft/models/block/template_wall_hanging_sign.json +++ b/src/main/resources/assets/minecraft/models/block/template_wall_hanging_sign.json @@ -72,7 +72,7 @@ "to": [16, 16, 10], "faces": { "north": {"uv": [1, 2, 5, 3], "texture": "#sign"}, - "east": {"uv": [0, 2, 1, 3], "texture": "#sign", "cullface": "west"}, + "east": {"uv": [0, 2, 1, 3], "texture": "#sign", "cullface": "east"}, "south": {"uv": [6, 2, 10, 3], "texture": "#sign"}, "west": {"uv": [5, 2, 6, 3], "texture": "#sign", "cullface": "west"}, "up": {"uv": [1, 2, 5, 0], "texture": "#sign", "cullface": "up"}, @@ -80,4 +80,4 @@ } } ] -} \ No newline at end of file +}