Skip to content

Commit

Permalink
VertexBatch3D normals fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Feb 23, 2024
1 parent a2acd2e commit 580916c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/g3d/src/arc/graphics/g3d/VertexBatch3D.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public VertexBatch3D(int maxVertices, boolean hasNormals, boolean hasColors, int

if(hasNormals){
normalOffset = offset;
offset += 2;
offset += 3;
}else{
normalOffset = 0;
}
Expand Down

0 comments on commit 580916c

Please sign in to comment.