babylonjs-gltf2interface 5.1.0 → 5.2.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.glTF2Interface.d.ts +14 -4
- package/package.json +1 -1
|
@@ -1037,6 +1037,16 @@ declare module BABYLON.GLTF2 {
|
|
|
1037
1037
|
clearcoatNormalTexture?: IMaterialNormalTextureInfo;
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
|
+
/** @hidden */
|
|
1041
|
+
interface IKHRMaterialsIridescence extends IMaterialExtension {
|
|
1042
|
+
iridescenceFactor?: number;
|
|
1043
|
+
iridescenceIOR?: number;
|
|
1044
|
+
iridescenceThicknessMinimum?: number;
|
|
1045
|
+
iridescenceThicknessMaximum?: number;
|
|
1046
|
+
iridescenceTexture?: ITextureInfo;
|
|
1047
|
+
iridescenceThicknessTexture?: ITextureInfo;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1040
1050
|
/**
|
|
1041
1051
|
* Interfaces from the KHR_materials_ior extension
|
|
1042
1052
|
* !!! Experimental Extension Subject to Changes !!!
|
|
@@ -1090,10 +1100,10 @@ declare module BABYLON.GLTF2 {
|
|
|
1090
1100
|
|
|
1091
1101
|
/** @hidden */
|
|
1092
1102
|
interface IKHRMaterialsSpecular extends IMaterialExtension {
|
|
1093
|
-
specularFactor
|
|
1094
|
-
specularColorFactor
|
|
1095
|
-
specularTexture
|
|
1096
|
-
specularColorTexture
|
|
1103
|
+
specularFactor?: number;
|
|
1104
|
+
specularColorFactor?: number[];
|
|
1105
|
+
specularTexture?: ITextureInfo;
|
|
1106
|
+
specularColorTexture?: ITextureInfo;
|
|
1097
1107
|
}
|
|
1098
1108
|
|
|
1099
1109
|
/**
|
package/package.json
CHANGED