babylonjs-loaders 8.41.1 → 8.41.2

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.
@@ -6666,6 +6666,7 @@ export function ParseSpz(data: ArrayBuffer, scene: Scene, loadingOptions: SPLATL
6666
6666
 
6667
6667
  }
6668
6668
  declare module "babylonjs-loaders/SPLAT/splatLoadingOptions" {
6669
+ import { GaussianSplattingMesh } from "babylonjs/Meshes/GaussianSplatting/gaussianSplattingMesh";
6669
6670
  /**
6670
6671
  * Options for loading Gaussian Splatting and PLY files
6671
6672
  */
@@ -6693,6 +6694,10 @@ export type SPLATLoadingOptions = {
6693
6694
  * Disable automatic camera limits from being applied if they exist in the splat file
6694
6695
  */
6695
6696
  disableAutoCameraLimits?: boolean;
6697
+ /**
6698
+ * Mesh that will be used to load data instead of creating a new one
6699
+ */
6700
+ gaussianSplattingMesh?: GaussianSplattingMesh;
6696
6701
  };
6697
6702
 
6698
6703
  }
@@ -14043,6 +14048,10 @@ declare module BABYLON {
14043
14048
  * Disable automatic camera limits from being applied if they exist in the splat file
14044
14049
  */
14045
14050
  disableAutoCameraLimits?: boolean;
14051
+ /**
14052
+ * Mesh that will be used to load data instead of creating a new one
14053
+ */
14054
+ gaussianSplattingMesh?: GaussianSplattingMesh;
14046
14055
  };
14047
14056
 
14048
14057
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-loaders",
3
- "version": "8.41.1",
3
+ "version": "8.41.2",
4
4
  "main": "babylonjs.loaders.min.js",
5
5
  "types": "babylonjs.loaders.module.d.ts",
6
6
  "files": [
@@ -15,8 +15,8 @@
15
15
  "test:escheck": "es-check es6 ./babylonjs.loaders.js"
16
16
  },
17
17
  "dependencies": {
18
- "babylonjs": "^8.41.1",
19
- "babylonjs-gltf2interface": "^8.41.1"
18
+ "babylonjs": "^8.41.2",
19
+ "babylonjs-gltf2interface": "^8.41.2"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/build-tools": "1.0.0",