babylonjs-gltf2interface 7.37.1 → 7.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.glTF2Interface.d.ts +12 -17
- package/package.json +1 -1
@@ -1041,12 +1041,7 @@ declare module BABYLON.GLTF2 {
|
|
1041
1041
|
}
|
1042
1042
|
|
1043
1043
|
/** @internal */
|
1044
|
-
interface
|
1045
|
-
hasTextures?(): boolean;
|
1046
|
-
}
|
1047
|
-
|
1048
|
-
/** @internal */
|
1049
|
-
interface IKHRMaterialsClearcoat extends IMaterialExtension {
|
1044
|
+
interface IKHRMaterialsClearcoat {
|
1050
1045
|
clearcoatFactor?: number;
|
1051
1046
|
clearcoatTexture?: ITextureInfo;
|
1052
1047
|
clearcoatRoughnessFactor?: number;
|
@@ -1055,7 +1050,7 @@ declare module BABYLON.GLTF2 {
|
|
1055
1050
|
}
|
1056
1051
|
|
1057
1052
|
/** @internal */
|
1058
|
-
interface IKHRMaterialsIridescence
|
1053
|
+
interface IKHRMaterialsIridescence {
|
1059
1054
|
iridescenceFactor?: number;
|
1060
1055
|
iridescenceIor?: number;
|
1061
1056
|
iridescenceThicknessMinimum?: number;
|
@@ -1065,7 +1060,7 @@ declare module BABYLON.GLTF2 {
|
|
1065
1060
|
}
|
1066
1061
|
|
1067
1062
|
/** @internal */
|
1068
|
-
interface IKHRMaterialsAnisotropy
|
1063
|
+
interface IKHRMaterialsAnisotropy {
|
1069
1064
|
anisotropyStrength?: number;
|
1070
1065
|
anisotropyRotation?: number;
|
1071
1066
|
anisotropyTexture?: ITextureInfo;
|
@@ -1076,7 +1071,7 @@ declare module BABYLON.GLTF2 {
|
|
1076
1071
|
*/
|
1077
1072
|
|
1078
1073
|
/** @internal */
|
1079
|
-
interface IKHRMaterialsIor
|
1074
|
+
interface IKHRMaterialsIor {
|
1080
1075
|
ior?: number;
|
1081
1076
|
}
|
1082
1077
|
|
@@ -1085,7 +1080,7 @@ declare module BABYLON.GLTF2 {
|
|
1085
1080
|
*/
|
1086
1081
|
|
1087
1082
|
/** @internal */
|
1088
|
-
interface IKHRMaterialsVolume
|
1083
|
+
interface IKHRMaterialsVolume {
|
1089
1084
|
thicknessFactor?: number;
|
1090
1085
|
thicknessTexture?: ITextureInfo;
|
1091
1086
|
attenuationDistance?: number;
|
@@ -1097,7 +1092,7 @@ declare module BABYLON.GLTF2 {
|
|
1097
1092
|
*/
|
1098
1093
|
|
1099
1094
|
/** @internal */
|
1100
|
-
interface IKHRMaterialsDispersion
|
1095
|
+
interface IKHRMaterialsDispersion {
|
1101
1096
|
dispersion?: number;
|
1102
1097
|
}
|
1103
1098
|
|
@@ -1106,7 +1101,7 @@ declare module BABYLON.GLTF2 {
|
|
1106
1101
|
*/
|
1107
1102
|
|
1108
1103
|
/** @internal */
|
1109
|
-
interface IKHRMaterialsSpecular
|
1104
|
+
interface IKHRMaterialsSpecular {
|
1110
1105
|
specularFactor?: number;
|
1111
1106
|
specularColorFactor?: number[];
|
1112
1107
|
specularTexture?: ITextureInfo;
|
@@ -1118,7 +1113,7 @@ declare module BABYLON.GLTF2 {
|
|
1118
1113
|
*/
|
1119
1114
|
|
1120
1115
|
/** @internal */
|
1121
|
-
interface IKHRMaterialsTransmission
|
1116
|
+
interface IKHRMaterialsTransmission {
|
1122
1117
|
transmissionFactor?: number;
|
1123
1118
|
transmissionTexture?: ITextureInfo;
|
1124
1119
|
}
|
@@ -1128,7 +1123,7 @@ declare module BABYLON.GLTF2 {
|
|
1128
1123
|
*/
|
1129
1124
|
|
1130
1125
|
/** @internal */
|
1131
|
-
interface IKHRMaterialsEmissiveStrength
|
1126
|
+
interface IKHRMaterialsEmissiveStrength {
|
1132
1127
|
emissiveStrength: number;
|
1133
1128
|
}
|
1134
1129
|
|
@@ -1137,7 +1132,7 @@ declare module BABYLON.GLTF2 {
|
|
1137
1132
|
*/
|
1138
1133
|
|
1139
1134
|
/** @internal */
|
1140
|
-
interface IKHRMaterialsPbrSpecularGlossiness
|
1135
|
+
interface IKHRMaterialsPbrSpecularGlossiness {
|
1141
1136
|
diffuseFactor: number[];
|
1142
1137
|
diffuseTexture: ITextureInfo;
|
1143
1138
|
specularFactor: number[];
|
@@ -1150,7 +1145,7 @@ declare module BABYLON.GLTF2 {
|
|
1150
1145
|
*/
|
1151
1146
|
|
1152
1147
|
/** @internal */
|
1153
|
-
interface IKHRMaterialsSheen
|
1148
|
+
interface IKHRMaterialsSheen {
|
1154
1149
|
sheenColorFactor?: number[];
|
1155
1150
|
sheenColorTexture?: ITextureInfo;
|
1156
1151
|
sheenRoughnessFactor?: number;
|
@@ -1163,7 +1158,7 @@ declare module BABYLON.GLTF2 {
|
|
1163
1158
|
*/
|
1164
1159
|
|
1165
1160
|
/** @internal */
|
1166
|
-
interface IKHRMaterialsDiffuseTransmission
|
1161
|
+
interface IKHRMaterialsDiffuseTransmission {
|
1167
1162
|
diffuseTransmissionFactor?: number;
|
1168
1163
|
diffuseTransmissionTexture?: ITextureInfo;
|
1169
1164
|
diffuseTransmissionColorFactor?: number[];
|
package/package.json
CHANGED