babylonjs-gltf2interface 7.2.2 → 7.3.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.
@@ -1158,14 +1158,16 @@ declare module BABYLON.GLTF2 {
|
|
1158
1158
|
}
|
1159
1159
|
|
1160
1160
|
/**
|
1161
|
-
* Interfaces from the
|
1161
|
+
* Interfaces from the KHR_materials_diffuse_transmission extension
|
1162
1162
|
* !!! Experimental Extension Subject to Changes !!!
|
1163
1163
|
*/
|
1164
1164
|
|
1165
1165
|
/** @internal */
|
1166
|
-
interface
|
1167
|
-
|
1168
|
-
|
1166
|
+
interface IKHRMaterialsDiffuseTransmission extends IMaterialExtension {
|
1167
|
+
diffuseTransmissionFactor?: number;
|
1168
|
+
diffuseTransmissionTexture?: ITextureInfo;
|
1169
|
+
diffuseTransmissionColorFactor?: number[];
|
1170
|
+
diffuseTransmissionColorTexture?: ITextureInfo;
|
1169
1171
|
}
|
1170
1172
|
|
1171
1173
|
/**
|
package/package.json
CHANGED