babylonjs-gltf2interface 5.0.0-alpha.58 → 5.0.0-alpha.59
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 +10 -0
- package/package.json +1 -1
|
@@ -1047,6 +1047,16 @@ declare module BABYLON.GLTF2 {
|
|
|
1047
1047
|
ior: number;
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
|
+
/**
|
|
1051
|
+
* Interfaces from the KHR_materials_emissive_strength extension
|
|
1052
|
+
* !!! Experimental Extension Subject to Changes !!!
|
|
1053
|
+
*/
|
|
1054
|
+
|
|
1055
|
+
/** @hidden */
|
|
1056
|
+
interface IKHRMaterialsEmissiveStrength extends IMaterialExtension {
|
|
1057
|
+
emissiveStrength: number;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1050
1060
|
/**
|
|
1051
1061
|
* Interfaces from the KHR_materials_pbrSpecularGlossiness extension
|
|
1052
1062
|
*/
|
package/package.json
CHANGED