babylonjs-gltf2interface 8.6.1 → 8.6.2
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 -0
- package/package.json +1 -1
@@ -1058,6 +1058,9 @@ declare module BABYLON.GLTF2 {
|
|
1058
1058
|
lights: IKHRLightsPunctual_Light[];
|
1059
1059
|
}
|
1060
1060
|
|
1061
|
+
/**
|
1062
|
+
* Interfaces from the KHR_materials_clearcoat extension
|
1063
|
+
*/
|
1061
1064
|
/** @internal */
|
1062
1065
|
interface IKHRMaterialsClearcoat {
|
1063
1066
|
clearcoatFactor?: number;
|
@@ -1183,6 +1186,15 @@ declare module BABYLON.GLTF2 {
|
|
1183
1186
|
diffuseTransmissionColorTexture?: ITextureInfo;
|
1184
1187
|
}
|
1185
1188
|
|
1189
|
+
/**
|
1190
|
+
* Interfaces from the EXT_materials_diffuse_roughness extension
|
1191
|
+
*/
|
1192
|
+
/** @internal */
|
1193
|
+
interface IEXTMaterialsDiffuseRoughness {
|
1194
|
+
diffuseRoughnessFactor?: number;
|
1195
|
+
diffuseRoughnessTexture?: ITextureInfo;
|
1196
|
+
}
|
1197
|
+
|
1186
1198
|
/**
|
1187
1199
|
* Interfaces from the KHR_materials_variants extension
|
1188
1200
|
*/
|
package/package.json
CHANGED