Skip to content

Commit

Permalink
GS reorder fix (#6410)
Browse files Browse the repository at this point in the history
  • Loading branch information
slimbuck committed May 21, 2024
1 parent 8f83915 commit 44008b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scene/gsplat/gsplat-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,9 @@ class GSplatData {

this.elements.forEach((element) => {
element.properties.forEach((property) => {
property.storage = reorder(property.storage);
if (property.storage) {
property.storage = reorder(property.storage);
}
});
});
}
Expand Down

0 comments on commit 44008b2

Please sign in to comment.