babylonjs-loaders 6.27.1 → 6.28.1
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.glTF1FileLoader.js +3 -3
- package/babylon.glTF1FileLoader.min.js +1 -1
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- package/babylon.glTF2FileLoader.js +18 -4
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +18 -4
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +3 -1
- package/babylonjs.loaders.js +18 -4
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +6 -2
- package/package.json +3 -3
|
@@ -2071,6 +2071,8 @@ export class GLTFLoader implements IGLTFLoader {
|
|
|
2071
2071
|
_babylonLights: Light[];
|
|
2072
2072
|
/** @internal */
|
|
2073
2073
|
_disableInstancedMesh: number;
|
|
2074
|
+
/** @internal */
|
|
2075
|
+
_allMaterialsDirtyRequired: boolean;
|
|
2074
2076
|
private readonly _parent;
|
|
2075
2077
|
private readonly _extensions;
|
|
2076
2078
|
private _disposed;
|
|
@@ -3323,7 +3325,7 @@ export interface IGLTFValidationConfiguration {
|
|
|
3323
3325
|
*/
|
|
3324
3326
|
export class GLTFValidation {
|
|
3325
3327
|
/**
|
|
3326
|
-
* The configuration. Defaults to `{ url: "https://
|
|
3328
|
+
* The configuration. Defaults to `{ url: "https://cdn.babylonjs.com/gltf_validator.js" }`.
|
|
3327
3329
|
*/
|
|
3328
3330
|
static Configuration: IGLTFValidationConfiguration;
|
|
3329
3331
|
private static _LoadScriptPromise;
|
|
@@ -5886,6 +5888,8 @@ declare module BABYLON.GLTF2 {
|
|
|
5886
5888
|
_babylonLights: Light[];
|
|
5887
5889
|
/** @internal */
|
|
5888
5890
|
_disableInstancedMesh: number;
|
|
5891
|
+
/** @internal */
|
|
5892
|
+
_allMaterialsDirtyRequired: boolean;
|
|
5889
5893
|
private readonly _parent;
|
|
5890
5894
|
private readonly _extensions;
|
|
5891
5895
|
private _disposed;
|
|
@@ -7109,7 +7113,7 @@ declare module BABYLON {
|
|
|
7109
7113
|
*/
|
|
7110
7114
|
export class GLTFValidation {
|
|
7111
7115
|
/**
|
|
7112
|
-
* The configuration. Defaults to `{ url: "https://
|
|
7116
|
+
* The configuration. Defaults to `{ url: "https://cdn.babylonjs.com/gltf_validator.js" }`.
|
|
7113
7117
|
*/
|
|
7114
7118
|
static Configuration: IGLTFValidationConfiguration;
|
|
7115
7119
|
private static _LoadScriptPromise;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.28.1",
|
|
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.28.1",
|
|
19
|
+
"babylonjs-gltf2interface": "^6.28.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|