babylonjs-loaders 7.1.0 → 7.2.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 +2 -2
- package/babylon.glTF1FileLoader.min.js +1 -1
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- package/babylon.glTF2FileLoader.js +13 -3
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +13 -3
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +18 -0
- package/babylonjs.loaders.js +13 -3
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +36 -0
- package/package.json +3 -3
|
@@ -1177,6 +1177,24 @@ export const animationPointerTree: {
|
|
|
1177
1177
|
iridescenceIor: MaterialAnimationPropertyInfo[];
|
|
1178
1178
|
iridescenceThicknessMinimum: MaterialAnimationPropertyInfo[];
|
|
1179
1179
|
iridescenceThicknessMaximum: MaterialAnimationPropertyInfo[];
|
|
1180
|
+
iridescenceTexture: {
|
|
1181
|
+
extensions: {
|
|
1182
|
+
KHR_texture_transform: {
|
|
1183
|
+
scale: MaterialAnimationPropertyInfo[];
|
|
1184
|
+
offset: MaterialAnimationPropertyInfo[];
|
|
1185
|
+
rotation: MaterialAnimationPropertyInfo[];
|
|
1186
|
+
};
|
|
1187
|
+
};
|
|
1188
|
+
};
|
|
1189
|
+
iridescenceThicknessTexture: {
|
|
1190
|
+
extensions: {
|
|
1191
|
+
KHR_texture_transform: {
|
|
1192
|
+
scale: MaterialAnimationPropertyInfo[];
|
|
1193
|
+
offset: MaterialAnimationPropertyInfo[];
|
|
1194
|
+
rotation: MaterialAnimationPropertyInfo[];
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
};
|
|
1180
1198
|
};
|
|
1181
1199
|
KHR_materials_sheen: {
|
|
1182
1200
|
sheenColorFactor: MaterialAnimationPropertyInfo[];
|
|
@@ -5381,6 +5399,24 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
5381
5399
|
iridescenceIor: MaterialAnimationPropertyInfo[];
|
|
5382
5400
|
iridescenceThicknessMinimum: MaterialAnimationPropertyInfo[];
|
|
5383
5401
|
iridescenceThicknessMaximum: MaterialAnimationPropertyInfo[];
|
|
5402
|
+
iridescenceTexture: {
|
|
5403
|
+
extensions: {
|
|
5404
|
+
KHR_texture_transform: {
|
|
5405
|
+
scale: MaterialAnimationPropertyInfo[];
|
|
5406
|
+
offset: MaterialAnimationPropertyInfo[];
|
|
5407
|
+
rotation: MaterialAnimationPropertyInfo[];
|
|
5408
|
+
};
|
|
5409
|
+
};
|
|
5410
|
+
};
|
|
5411
|
+
iridescenceThicknessTexture: {
|
|
5412
|
+
extensions: {
|
|
5413
|
+
KHR_texture_transform: {
|
|
5414
|
+
scale: MaterialAnimationPropertyInfo[];
|
|
5415
|
+
offset: MaterialAnimationPropertyInfo[];
|
|
5416
|
+
rotation: MaterialAnimationPropertyInfo[];
|
|
5417
|
+
};
|
|
5418
|
+
};
|
|
5419
|
+
};
|
|
5384
5420
|
};
|
|
5385
5421
|
KHR_materials_sheen: {
|
|
5386
5422
|
sheenColorFactor: MaterialAnimationPropertyInfo[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "7.1
|
|
3
|
+
"version": "7.2.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": "^7.1
|
|
19
|
-
"babylonjs-gltf2interface": "^7.1
|
|
18
|
+
"babylonjs": "^7.2.1",
|
|
19
|
+
"babylonjs-gltf2interface": "^7.2.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|