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
|
@@ -4355,6 +4355,10 @@ export type SPLATLoadingOptions = {
|
|
|
4355
4355
|
* Defines if buffers should be kept in memory for editing purposes
|
|
4356
4356
|
*/
|
|
4357
4357
|
keepInRam?: boolean;
|
|
4358
|
+
/**
|
|
4359
|
+
* Spatial Y Flip for splat position and orientation
|
|
4360
|
+
*/
|
|
4361
|
+
flipY?: boolean;
|
|
4358
4362
|
};
|
|
4359
4363
|
|
|
4360
4364
|
}
|
|
@@ -9162,6 +9166,10 @@ declare module BABYLON {
|
|
|
9162
9166
|
* Defines if buffers should be kept in memory for editing purposes
|
|
9163
9167
|
*/
|
|
9164
9168
|
keepInRam?: boolean;
|
|
9169
|
+
/**
|
|
9170
|
+
* Spatial Y Flip for splat position and orientation
|
|
9171
|
+
*/
|
|
9172
|
+
flipY?: boolean;
|
|
9165
9173
|
};
|
|
9166
9174
|
|
|
9167
9175
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.51.0",
|
|
4
4
|
"main": "babylonjs.loaders.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": "^7.
|
|
19
|
-
"babylonjs-gltf2interface": "^7.
|
|
18
|
+
"babylonjs": "^7.51.0",
|
|
19
|
+
"babylonjs-gltf2interface": "^7.51.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|