babylonjs-loaders 8.31.2 → 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
|
@@ -3169,6 +3169,9 @@ export interface IGLTFObjectModelTreeNodesObject<GLTFTargetType = INode, Babylon
|
|
|
3169
3169
|
multiplier: IObjectAccessor<INode, Light, number>;
|
|
3170
3170
|
color: IObjectAccessor<INode, Light, Color3>;
|
|
3171
3171
|
};
|
|
3172
|
+
KHR_node_visibility?: {
|
|
3173
|
+
visible: IObjectAccessor<INode, Mesh, boolean>;
|
|
3174
|
+
};
|
|
3172
3175
|
};
|
|
3173
3176
|
};
|
|
3174
3177
|
}
|
|
@@ -3876,12 +3879,12 @@ export class KHR_node_visibility implements IGLTFLoaderExtension {
|
|
|
3876
3879
|
* Defines whether this extension is enabled.
|
|
3877
3880
|
*/
|
|
3878
3881
|
enabled: boolean;
|
|
3879
|
-
private _loader
|
|
3882
|
+
private _loader?;
|
|
3880
3883
|
/**
|
|
3881
3884
|
* @internal
|
|
3882
3885
|
*/
|
|
3883
3886
|
constructor(loader: GLTFLoader);
|
|
3884
|
-
onReady():
|
|
3887
|
+
onReady(): void;
|
|
3885
3888
|
dispose(): void;
|
|
3886
3889
|
}
|
|
3887
3890
|
|
|
@@ -10490,6 +10493,9 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
10490
10493
|
multiplier: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, number>;
|
|
10491
10494
|
color: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, Color3>;
|
|
10492
10495
|
};
|
|
10496
|
+
KHR_node_visibility?: {
|
|
10497
|
+
visible: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Mesh, boolean>;
|
|
10498
|
+
};
|
|
10493
10499
|
};
|
|
10494
10500
|
};
|
|
10495
10501
|
}
|
|
@@ -11150,12 +11156,12 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11150
11156
|
* Defines whether this extension is enabled.
|
|
11151
11157
|
*/
|
|
11152
11158
|
enabled: boolean;
|
|
11153
|
-
private _loader
|
|
11159
|
+
private _loader?;
|
|
11154
11160
|
/**
|
|
11155
11161
|
* @internal
|
|
11156
11162
|
*/
|
|
11157
11163
|
constructor(loader: BABYLON.GLTF2.GLTFLoader);
|
|
11158
|
-
onReady():
|
|
11164
|
+
onReady(): void;
|
|
11159
11165
|
dispose(): void;
|
|
11160
11166
|
}
|
|
11161
11167
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "8.31.
|
|
3
|
+
"version": "8.31.4",
|
|
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.31.
|
|
19
|
-
"babylonjs-gltf2interface": "^8.31.
|
|
18
|
+
"babylonjs": "^8.31.4",
|
|
19
|
+
"babylonjs-gltf2interface": "^8.31.4"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|