babylonjs-loaders 6.37.0 → 6.38.0
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 +11 -1
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +11 -1
- 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 +11 -1
- 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
|
@@ -2241,6 +2241,10 @@ export class GLTFLoader implements IGLTFLoader {
|
|
|
2241
2241
|
* The root Babylon mesh when loading the asset.
|
|
2242
2242
|
*/
|
|
2243
2243
|
get rootBabylonMesh(): Nullable<Mesh>;
|
|
2244
|
+
/**
|
|
2245
|
+
* The root url when loading the asset.
|
|
2246
|
+
*/
|
|
2247
|
+
get rootUrl(): Nullable<string>;
|
|
2244
2248
|
/**
|
|
2245
2249
|
* @internal
|
|
2246
2250
|
*/
|
|
@@ -6259,6 +6263,10 @@ declare module BABYLON.GLTF2 {
|
|
|
6259
6263
|
* The root Babylon mesh when loading the asset.
|
|
6260
6264
|
*/
|
|
6261
6265
|
get rootBabylonMesh(): Nullable<Mesh>;
|
|
6266
|
+
/**
|
|
6267
|
+
* The root url when loading the asset.
|
|
6268
|
+
*/
|
|
6269
|
+
get rootUrl(): Nullable<string>;
|
|
6262
6270
|
/**
|
|
6263
6271
|
* @internal
|
|
6264
6272
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.38.0",
|
|
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": "^6.
|
|
19
|
-
"babylonjs-gltf2interface": "^6.
|
|
18
|
+
"babylonjs": "^6.38.0",
|
|
19
|
+
"babylonjs-gltf2interface": "^6.38.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|