Fix cubic rendering orientation

This commit is contained in:
Jonas Herzig
2020-03-31 23:43:21 +02:00
parent d6559a21fc
commit 2c3697c2ec

View File

@@ -55,27 +55,27 @@ public abstract class Mixin_CubicRotation {
switch (data) {
case FRONT:
angle = 0;
x = 1;
y = 1;
break;
case RIGHT:
angle = 90;
x = 1;
y = 1;
break;
case BACK:
angle = 180;
x = 1;
y = 1;
break;
case LEFT:
angle = -90;
x = 1;
y = 1;
break;
case TOP:
angle = -90;
y = 1;
x = 1;
break;
case BOTTOM:
angle = 90;
y = 1;
x = 1;
break;
}
//#if MC>=11500