Removed SDF, fixes

This commit is contained in:
paulevsGitch 2021-05-26 15:22:10 +03:00
parent 27e077ddd0
commit 84e35f6a86
74 changed files with 232 additions and 1515 deletions

View file

@ -69,7 +69,8 @@ public class ModelsHelper {
BlockModelRotation rotation = BlockModelRotation.X0_Y0;
switch (axis) {
case X: rotation = BlockModelRotation.X90_Y90; break;
case Z: default: rotation = BlockModelRotation.X90_Y0; break;
case Z: rotation = BlockModelRotation.X90_Y0; break;
default: break;
}
return createMultiVariant(resourceLocation, rotation.getRotation(), false);
}