babylonjs-gltf2interface 6.4.1 → 6.5.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.
@@ -1060,6 +1060,13 @@ declare module BABYLON.GLTF2 {
|
|
1060
1060
|
iridescenceThicknessTexture?: ITextureInfo;
|
1061
1061
|
}
|
1062
1062
|
|
1063
|
+
/** @internal */
|
1064
|
+
interface IKHRMaterialsAnisotropy extends IMaterialExtension {
|
1065
|
+
anisotropyStrength?: number;
|
1066
|
+
anisotropyRotation?: number;
|
1067
|
+
anisotropyTexture?: ITextureInfo;
|
1068
|
+
}
|
1069
|
+
|
1063
1070
|
/**
|
1064
1071
|
* Interfaces from the KHR_materials_ior extension
|
1065
1072
|
*/
|
@@ -1216,7 +1223,6 @@ declare module BABYLON.GLTF2 {
|
|
1216
1223
|
packet: number;
|
1217
1224
|
}
|
1218
1225
|
|
1219
|
-
|
1220
1226
|
/**
|
1221
1227
|
* Interfaces from the KHR_animation_pointer extension
|
1222
1228
|
* !!! Experimental Extension Subject to Changes !!!
|
package/package.json
CHANGED