babylonjs-loaders 7.53.1 → 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
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -2424,6 +2424,10 @@ declare module BABYLON {
|
|
|
2424
2424
|
* Defines options for the KHR_materials_variants extension.
|
|
2425
2425
|
*/
|
|
2426
2426
|
["KHR_materials_variants"]: Partial<{
|
|
2427
|
+
/**
|
|
2428
|
+
* Specifies the name of the variant that should be selected by default.
|
|
2429
|
+
*/
|
|
2430
|
+
defaultVariant: string;
|
|
2427
2431
|
/**
|
|
2428
2432
|
* Defines a callback that will be called if material variants are loaded.
|
|
2429
2433
|
* @experimental
|