From 27c54cce2ce9f01303266f7eecdffd074a28d2d1 Mon Sep 17 00:00:00 2001 From: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Date: Sun, 1 Jan 2023 01:49:19 +0000 Subject: Working bottom on block renderer --- .../github/technus/tectech/thing/block/RenderEyeOfHarmony.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/com') 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 64dda75ab0..41b28d0245 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 @@ -244,10 +244,10 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer { minV = texture.getMinV(); maxV = texture.getMaxV(); - tes.addVertexWithUV(X[1], Y[1]-0.2, Z[1], maxU, maxV); - tes.addVertexWithUV(X[6], Y[6]-0.4, Z[6], maxU, minV); - tes.addVertexWithUV(X[5], Y[5]-0.6, Z[5], minU, minV); - tes.addVertexWithUV(X[2], Y[2]-0.8, Z[2], minU, maxV); + tes.addVertexWithUV(X[2], Y[2], Z[2], maxU, maxV); + tes.addVertexWithUV(X[5], Y[5], Z[5], maxU, minV); + tes.addVertexWithUV(X[6], Y[6], Z[6], minU, minV); + tes.addVertexWithUV(X[1], Y[1], Z[1], minU, maxV); GL11.glPopMatrix(); } -- cgit