aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-01 02:21:24 +0000
committerGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-01 02:21:24 +0000
commit7a51be38a4df865c88a0e5e7cf8e6a152a73663f (patch)
tree6c72470a0e8aa61d4e04b4c21f78c77f4c82af14 /src/main/java/com
parent7733cd5b7f08123073617cd2f8f340f968b75291 (diff)
downloadGT5-Unofficial-7a51be38a4df865c88a0e5e7cf8e6a152a73663f.tar.gz
GT5-Unofficial-7a51be38a4df865c88a0e5e7cf8e6a152a73663f.tar.bz2
GT5-Unofficial-7a51be38a4df865c88a0e5e7cf8e6a152a73663f.zip
Working SIDE 3 on block renderer
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java12
1 files changed, 6 insertions, 6 deletions
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();