From 7a51be38a4df865c88a0e5e7cf8e6a152a73663f Mon Sep 17 00:00:00 2001 From: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Date: Sun, 1 Jan 2023 02:21:24 +0000 Subject: Working SIDE 3 on block renderer --- .../technus/tectech/thing/block/RenderEyeOfHarmony.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java index b33365d01e..84aa67b5cf 100644 --- a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java @@ -272,7 +272,7 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer { } { - texture = block.getIcon(3, meta); + texture = block.getIcon(5, meta); minU = texture.getMinU(); maxU = texture.getMaxU(); @@ -300,17 +300,17 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer { } { - texture = block.getIcon(5, meta); + texture = block.getIcon(3, meta); minU = texture.getMinU(); maxU = texture.getMaxU(); minV = texture.getMinV(); maxV = texture.getMaxV(); - tes.addVertexWithUV(X[0], Y[0], Z[0], maxU, maxV); - tes.addVertexWithUV(X[1], Y[1], Z[1], maxU, minV); - tes.addVertexWithUV(X[2], Y[2], Z[2], minU, minV); - tes.addVertexWithUV(X[3], Y[3], Z[3], minU, maxV); + tes.addVertexWithUV(X[2], Y[2], Z[2], maxU, maxV); + tes.addVertexWithUV(X[3], Y[3], Z[3], maxU, minV); + tes.addVertexWithUV(X[0], Y[0], Z[0], minU, minV); + tes.addVertexWithUV(X[1], Y[1], Z[1], minU, maxV); } tes.draw(); -- cgit