babylonjs-loaders 9.2.2 → 9.3.1

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.
@@ -7098,6 +7098,11 @@ export type SPLATLoadingOptions = {
7098
7098
  * Mesh that will be used to load data instead of creating a new one
7099
7099
  */
7100
7100
  gaussianSplattingMesh?: GaussianSplattingMesh;
7101
+ /**
7102
+ * Generate rotation and scale matrix textures required for voxel-based IBL shadows.
7103
+ * Required for IBL shadows to work if keepInRam is false.
7104
+ */
7105
+ needsRotationScaleTextures?: boolean;
7101
7106
  /**
7102
7107
  * URL to load the spz WASM ES module from (e.g. the \@adobe/spz package).
7103
7108
  * When provided, the WASM-based SPZ loader is used, which supports extra features
@@ -14771,6 +14776,11 @@ declare namespace BABYLON {
14771
14776
  * Mesh that will be used to load data instead of creating a new one
14772
14777
  */
14773
14778
  gaussianSplattingMesh?: GaussianSplattingMesh;
14779
+ /**
14780
+ * Generate rotation and scale matrix textures required for voxel-based IBL shadows.
14781
+ * Required for IBL shadows to work if keepInRam is false.
14782
+ */
14783
+ needsRotationScaleTextures?: boolean;
14774
14784
  /**
14775
14785
  * URL to load the spz WASM ES module from (e.g. the \@adobe/spz package).
14776
14786
  * When provided, the WASM-based SPZ loader is used, which supports extra features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-loaders",
3
- "version": "9.2.2",
3
+ "version": "9.3.1",
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": "9.2.2",
19
- "babylonjs-gltf2interface": "9.2.2"
18
+ "babylonjs": "9.3.1",
19
+ "babylonjs-gltf2interface": "9.3.1"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/build-tools": "1.0.0",