@onerjs/core 8.34.3 → 8.34.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -682,6 +682,7 @@ export class GaussianSplattingMesh extends Mesh {
682
682
  ElementMode[ElementMode["Vertex"] = 0] = "Vertex";
683
683
  ElementMode[ElementMode["Chunk"] = 1] = "Chunk";
684
684
  ElementMode[ElementMode["SH"] = 2] = "SH";
685
+ ElementMode[ElementMode["Unused"] = 3] = "Unused";
685
686
  })(ElementMode || (ElementMode = {}));
686
687
  let chunkMode = 1 /* ElementMode.Chunk */;
687
688
  const vertexProperties = [];
@@ -732,6 +733,9 @@ export class GaussianSplattingMesh extends Mesh {
732
733
  else if (type == "sh") {
733
734
  chunkMode = 2 /* ElementMode.SH */;
734
735
  }
736
+ else {
737
+ chunkMode = 3 /* ElementMode.Unused */;
738
+ }
735
739
  }
736
740
  }
737
741
  const dataView = new DataView(data, headerEndIndex + headerEnd.length);