File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
common/src/main/java/net/caffeinemc/mods/sodium/client/render/immediate/model Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ public class ModelCuboid {
27
27
public static final int
28
28
FACE_NEG_Y = 0 , // DOWN
29
29
FACE_POS_Y = 1 , // UP
30
- FACE_NEG_X = 2 , // WEST
30
+ FACE_NEG_X = 2 , // EAST
31
31
FACE_NEG_Z = 3 , // NORTH
32
- FACE_POS_X = 4 , // EAST
32
+ FACE_POS_X = 4 , // WEST
33
33
FACE_POS_Z = 5 ; // SOUTH
34
34
35
35
public final float originX , originY , originZ ;
@@ -183,8 +183,8 @@ private static int getFaceIndex(@NotNull Direction dir) {
183
183
case UP -> FACE_POS_Y ;
184
184
case NORTH -> FACE_NEG_Z ;
185
185
case SOUTH -> FACE_POS_Z ;
186
- case WEST -> FACE_NEG_X ;
187
- case EAST -> FACE_POS_X ;
186
+ case WEST -> FACE_POS_X ;
187
+ case EAST -> FACE_NEG_X ;
188
188
};
189
189
}
190
190
}
You can’t perform that action at this time.
0 commit comments