babylonjs-gltf2interface 8.28.1 → 8.28.3
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 +37 -1
- package/package.json +1 -1
|
@@ -1072,6 +1072,34 @@ declare module BABYLON.GLTF2 {
|
|
|
1072
1072
|
clearcoatRoughnessFactor?: number;
|
|
1073
1073
|
clearcoatRoughnessTexture?: ITextureInfo;
|
|
1074
1074
|
clearcoatNormalTexture?: IMaterialNormalTextureInfo;
|
|
1075
|
+
/**
|
|
1076
|
+
* Dictionary object with extension-specific objects
|
|
1077
|
+
*/
|
|
1078
|
+
extensions?: {
|
|
1079
|
+
[key: string]: any;
|
|
1080
|
+
};
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
/** @internal */
|
|
1084
|
+
interface IKHRMaterialsClearcoatDarkening {
|
|
1085
|
+
clearcoatDarkeningFactor?: number;
|
|
1086
|
+
clearcoatDarkeningTexture?: ITextureInfo;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
/** @internal */
|
|
1090
|
+
interface IKHRMaterialsClearcoatColor {
|
|
1091
|
+
clearcoatColorFactor?: number[];
|
|
1092
|
+
clearcoatColorTexture?: ITextureInfo;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
/** @internal */
|
|
1096
|
+
interface IKHRMaterialsClearcoatAnisotropy {
|
|
1097
|
+
clearcoatAnisotropyStrength?: number;
|
|
1098
|
+
clearcoatAnisotropyRotation?: number;
|
|
1099
|
+
clearcoatAnisotropyTexture?: ITextureInfo;
|
|
1100
|
+
extensions?: {
|
|
1101
|
+
[key: string]: any;
|
|
1102
|
+
};
|
|
1075
1103
|
}
|
|
1076
1104
|
|
|
1077
1105
|
/** @internal */
|
|
@@ -1089,6 +1117,14 @@ declare module BABYLON.GLTF2 {
|
|
|
1089
1117
|
anisotropyStrength?: number;
|
|
1090
1118
|
anisotropyRotation?: number;
|
|
1091
1119
|
anisotropyTexture?: ITextureInfo;
|
|
1120
|
+
extensions?: {
|
|
1121
|
+
[key: string]: any;
|
|
1122
|
+
};
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
/** @internal */
|
|
1126
|
+
interface IKHRMaterialsAnisotropyOpenPbr {
|
|
1127
|
+
anisotropyOpenPbrEnabled: boolean;
|
|
1092
1128
|
}
|
|
1093
1129
|
|
|
1094
1130
|
/**
|
|
@@ -1209,7 +1245,7 @@ declare module BABYLON.GLTF2 {
|
|
|
1209
1245
|
* Interfaces from the EXT_materials_diffuse_roughness extension
|
|
1210
1246
|
*/
|
|
1211
1247
|
/** @internal */
|
|
1212
|
-
interface
|
|
1248
|
+
interface IKHRMaterialsDiffuseRoughness {
|
|
1213
1249
|
diffuseRoughnessFactor?: number;
|
|
1214
1250
|
diffuseRoughnessTexture?: ITextureInfo;
|
|
1215
1251
|
}
|
package/package.json
CHANGED