mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-18 07:53:07 +01:00
Do not disable culling
- Revert change to disable culling when rendering schematics - Remove println in BlockHelper
This commit is contained in:
parent
c421f98c18
commit
826e29f0f3
2 changed files with 1 additions and 2 deletions
|
@ -117,7 +117,7 @@ public class SchematicRenderer {
|
|||
poseStack.translate(localPos.getX(), localPos.getY(), localPos.getZ());
|
||||
|
||||
BlockEntity tileEntity = renderWorld.getBlockEntity(localPos);
|
||||
dispatcher.renderBatched(state, pos, renderWorld, poseStack, shadeSeparatingWrapper, false, random,
|
||||
dispatcher.renderBatched(state, pos, renderWorld, poseStack, shadeSeparatingWrapper, true, random,
|
||||
tileEntity != null ? tileEntity.getModelData() : EmptyModelData.INSTANCE);
|
||||
|
||||
poseStack.popPose();
|
||||
|
|
|
@ -272,7 +272,6 @@ public class BlockHelper {
|
|||
((KineticTileEntity) tile).warnOfMovement();
|
||||
tile.load(data);
|
||||
}
|
||||
System.out.println("");
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue