summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMoulberry <jjenour@student.unimelb.edu.au>2021-03-04 21:16:37 +0800
committerGitHub <noreply@github.com>2021-03-04 21:16:37 +0800
commit06c3c7fcfd8f65e2a30f81626457f4180ea52a36 (patch)
treef9ca8bffeab3fbdef3b623dd28dd77809552cbef /src
parent9fa454949a58eb70c328ff75a37c3eb3755df6f4 (diff)
parent9c00dd875203f00889cd7ec30b5ee62cbe693d21 (diff)
downloadNotEnoughUpdates-2.0-PRE26.tar.gz
NotEnoughUpdates-2.0-PRE26.tar.bz2
NotEnoughUpdates-2.0-PRE26.zip
Merge pull request #158 from DJtheRedstoner/master2.0-PRE26
fix: block destroy progress positions rendered incorrectly with smooth aote
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinRenderGlobal.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinRenderGlobal.java b/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinRenderGlobal.java
index 1b2b99ec..a11bf052 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinRenderGlobal.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinRenderGlobal.java
@@ -79,4 +79,32 @@ public class MixinRenderGlobal {
}
}
+ //drawBlockDamageTexture
+ @ModifyVariable(method="drawBlockDamageTexture", at=@At(value="STORE"), ordinal = 0)
+ public double drawBlockDamageTexture_d0(double d0) {
+ Vector3f currentPosition = CustomItemEffects.INSTANCE.getCurrentPosition();
+ if(currentPosition != null) {
+ return currentPosition.x;
+ }
+ return d0;
+ }
+
+ @ModifyVariable(method="drawBlockDamageTexture", at=@At(value="STORE"), ordinal = 1)
+ public double drawBlockDamageTexture_d1(double d1) {
+ Vector3f currentPosition = CustomItemEffects.INSTANCE.getCurrentPosition();
+ if(currentPosition != null) {
+ return currentPosition.y;
+ }
+ return d1;
+ }
+
+ @ModifyVariable(method="drawBlockDamageTexture", at=@At(value="STORE"), ordinal = 2)
+ public double drawBlockDamageTexture_d2(double d2) {
+ Vector3f currentPosition = CustomItemEffects.INSTANCE.getCurrentPosition();
+ if(currentPosition != null) {
+ return currentPosition.z;
+ }
+ return d2;
+ }
+
}