babylonjs-loaders 8.31.3 → 8.31.4
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 +1 -1
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +1 -1
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +5 -2
- package/babylonjs.loaders.js +1 -1
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +10 -4
- package/package.json +3 -3
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -3092,6 +3092,9 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
3092
3092
|
multiplier: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, number>;
|
|
3093
3093
|
color: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, Color3>;
|
|
3094
3094
|
};
|
|
3095
|
+
KHR_node_visibility?: {
|
|
3096
|
+
visible: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Mesh, boolean>;
|
|
3097
|
+
};
|
|
3095
3098
|
};
|
|
3096
3099
|
};
|
|
3097
3100
|
}
|
|
@@ -3752,12 +3755,12 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
3752
3755
|
* Defines whether this extension is enabled.
|
|
3753
3756
|
*/
|
|
3754
3757
|
enabled: boolean;
|
|
3755
|
-
private _loader
|
|
3758
|
+
private _loader?;
|
|
3756
3759
|
/**
|
|
3757
3760
|
* @internal
|
|
3758
3761
|
*/
|
|
3759
3762
|
constructor(loader: BABYLON.GLTF2.GLTFLoader);
|
|
3760
|
-
onReady():
|
|
3763
|
+
onReady(): void;
|
|
3761
3764
|
dispose(): void;
|
|
3762
3765
|
}
|
|
3763
3766
|
|