diff options
author | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-01-01 01:49:19 +0000 |
---|---|---|
committer | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-01-01 01:49:19 +0000 |
commit | 27c54cce2ce9f01303266f7eecdffd074a28d2d1 (patch) | |
tree | e0376fbfd48e1e36a7d9ba347f3dfce91015b6a9 /src/main/java/com | |
parent | 9dd0d7986a8f18f0407db7d38a2a31c37a034450 (diff) | |
download | GT5-Unofficial-27c54cce2ce9f01303266f7eecdffd074a28d2d1.tar.gz GT5-Unofficial-27c54cce2ce9f01303266f7eecdffd074a28d2d1.tar.bz2 GT5-Unofficial-27c54cce2ce9f01303266f7eecdffd074a28d2d1.zip |
Working bottom on block renderer
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java | 8 |
1 files changed, 4 insertions, 4 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 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(); } |