babylonjs-loaders 8.32.1 → 8.32.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.
|
@@ -6559,6 +6559,12 @@ export type SPLATLoadingOptions = {
|
|
|
6559
6559
|
* (https://unpkg.com/fflate/umd/index.js)
|
|
6560
6560
|
*/
|
|
6561
6561
|
deflateURL?: string;
|
|
6562
|
+
/**
|
|
6563
|
+
* Instance of [fflate](https://github.com/101arrowz/fflate) to avoid
|
|
6564
|
+
* dynamically loading of the lib to global if needed, useful for bundler users.
|
|
6565
|
+
|
|
6566
|
+
*/
|
|
6567
|
+
fflate?: unknown;
|
|
6562
6568
|
};
|
|
6563
6569
|
|
|
6564
6570
|
}
|
|
@@ -13772,6 +13778,12 @@ declare module BABYLON {
|
|
|
13772
13778
|
* (https://unpkg.com/fflate/umd/index.js)
|
|
13773
13779
|
*/
|
|
13774
13780
|
deflateURL?: string;
|
|
13781
|
+
/**
|
|
13782
|
+
* Instance of [fflate](https://github.com/101arrowz/fflate) to avoid
|
|
13783
|
+
* dynamically loading of the lib to global if needed, useful for bundler users.
|
|
13784
|
+
* @example import * as fflate from 'fflate';
|
|
13785
|
+
*/
|
|
13786
|
+
fflate?: unknown;
|
|
13775
13787
|
};
|
|
13776
13788
|
|
|
13777
13789
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "8.32.
|
|
3
|
+
"version": "8.32.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.32.
|
|
19
|
-
"babylonjs-gltf2interface": "^8.32.
|
|
18
|
+
"babylonjs": "^8.32.2",
|
|
19
|
+
"babylonjs-gltf2interface": "^8.32.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|