Skip to content

Commit

Permalink
Disable quad reorientation
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Aug 24, 2024
1 parent d614a36 commit c91efa8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ private void colorizeQuad(MutableQuadViewImpl quad, int colorIndex) {
}

private void bufferQuad(MutableQuadViewImpl quad, float[] brightnesses, Material material, ChunkModelBuilder modelBuilder) {
ModelQuadOrientation orientation = defaultLightMode == LightMode.FLAT ? ModelQuadOrientation.NORMAL : ModelQuadOrientation.orientByBrightness(brightnesses, quad);
// TODO: Find a way to reimplement quad reorientation
ModelQuadOrientation orientation = ModelQuadOrientation.NORMAL;
ChunkVertexEncoder.Vertex[] vertices = this.vertices;
Vector3f offset = this.posOffset;

Expand Down

0 comments on commit c91efa8

Please sign in to comment.