Skip to content

Commit

Permalink
fix(/wiki/vertex-pulling): smol mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Longor1996 authored Feb 5, 2024
1 parent 2cb35cc commit 6a2fcb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/wiki/vertex-pulling/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void main()
vec3 position = vec3(x, y, z);
// Apply the offsets for our face so we can form the 2 triangles
position += facePositions[currVertexID];
position += facePositions[indices[currVertexID]];
// Output our position
gl_Position = vec4(position, 1.0);
Expand Down

0 comments on commit 6a2fcb0

Please sign in to comment.