Skip to content

Commit

Permalink
Merge branch 'next' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Jun 24, 2024
2 parents abc0b4f + b9f3e67 commit 0d20c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prismarine-viewer/viewer/lib/mesher/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ export function getSectionGeometry (sx, sy, sz, world: World) {
delete attr.t_uvs

attr.positions = new Float32Array(attr.positions) as any
attr.normals = new Uint8ClampedArray(attr.normals) as any
attr.normals = new Int8Array(attr.normals) as any
attr.colors = new Float32Array(attr.colors) as any
attr.uvs = new Float32Array(attr.uvs) as any

Expand Down

0 comments on commit 0d20c70

Please sign in to comment.