Skip to content

Commit

Permalink
Fix transforms not being run on fast path
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Dec 22, 2024
1 parent 3e04ad0 commit a40937b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void emitDirectly() {



private final MutableQuadViewImpl editorQuad = new BlockEmitter();
private final BlockEmitter editorQuad = new BlockEmitter();

/**
* The world which the block is being rendered in.
Expand Down Expand Up @@ -233,7 +233,7 @@ public void bufferDefaultModel(BakedModel model, @Nullable BlockState state, Pre
// Call processQuad instead of emit for efficiency
// (avoid unnecessarily clearing data, trying to apply transforms, and performing cull check again)

this.processQuad(editorQuad);
editorQuad.transformAndEmit();
}
}

Expand Down

0 comments on commit a40937b

Please # to comment.