babylonjs-loaders 7.49.0 → 7.51.0
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.
- package/babylon.glTF1FileLoader.js +1603 -1603
- package/babylon.glTF2FileLoader.js +1131 -1106
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +858 -833
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +4 -0
- package/babylonjs.loaders.js +640 -608
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +8 -0
- package/package.json +3 -3
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -4209,6 +4209,10 @@ declare module BABYLON {
|
|
|
4209
4209
|
* Defines if buffers should be kept in memory for editing purposes
|
|
4210
4210
|
*/
|
|
4211
4211
|
keepInRam?: boolean;
|
|
4212
|
+
/**
|
|
4213
|
+
* Spatial Y Flip for splat position and orientation
|
|
4214
|
+
*/
|
|
4215
|
+
flipY?: boolean;
|
|
4212
4216
|
};
|
|
4213
4217
|
|
|
4214
4218
|
|