babylonjs-loaders 7.53.0 → 7.53.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.
- package/babylon.glTF2FileLoader.js +7 -3
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +7 -3
- 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 +7 -3
- 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
|
@@ -2460,6 +2460,10 @@ module "babylonjs-loaders/glTF/glTFFileLoader" {
|
|
|
2460
2460
|
* Defines options for the KHR_materials_variants extension.
|
|
2461
2461
|
*/
|
|
2462
2462
|
["KHR_materials_variants"]: Partial<{
|
|
2463
|
+
/**
|
|
2464
|
+
* Specifies the name of the variant that should be selected by default.
|
|
2465
|
+
*/
|
|
2466
|
+
defaultVariant: string;
|
|
2463
2467
|
/**
|
|
2464
2468
|
* Defines a callback that will be called if material variants are loaded.
|
|
2465
2469
|
* @experimental
|
|
@@ -7854,6 +7858,10 @@ declare module BABYLON {
|
|
|
7854
7858
|
* Defines options for the KHR_materials_variants extension.
|
|
7855
7859
|
*/
|
|
7856
7860
|
["KHR_materials_variants"]: Partial<{
|
|
7861
|
+
/**
|
|
7862
|
+
* Specifies the name of the variant that should be selected by default.
|
|
7863
|
+
*/
|
|
7864
|
+
defaultVariant: string;
|
|
7857
7865
|
/**
|
|
7858
7866
|
* Defines a callback that will be called if material variants are loaded.
|
|
7859
7867
|
* @experimental
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "7.53.
|
|
3
|
+
"version": "7.53.2",
|
|
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.53.
|
|
19
|
-
"babylonjs-gltf2interface": "^7.53.
|
|
18
|
+
"babylonjs": "^7.53.2",
|
|
19
|
+
"babylonjs-gltf2interface": "^7.53.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|