Skip to content

Commit

Permalink
Update RawMeshBuilder.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Aphrodite2211 authored Jul 21, 2024
1 parent 881f1bd commit 97bad98
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public RawMeshBuilder lightMapUV(short u, short v) {
return this;
}

private void setNewDefaultVertex() {
buildingVertex = new Vertex();
private RawMeshBuilder setNewDefaultVertex() {
buildingVertex = new Vertex(new Vector3f(00, 0));
buildingVertex.normal = new Vector3f(0, 1, 0);
buildingVertex.u = 0;
buildingVertex.v = 0;
Expand Down

0 comments on commit 97bad98

Please sign in to comment.