babylonjs-gltf2interface 7.39.1 → 7.39.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 +18 -0
- package/package.json +1 -1
@@ -1007,6 +1007,24 @@ declare module BABYLON.GLTF2 {
|
|
1007
1007
|
attributes: { [name: string]: number };
|
1008
1008
|
}
|
1009
1009
|
|
1010
|
+
/**
|
1011
|
+
* Interfaces from the EXT_lights_ies extension
|
1012
|
+
*/
|
1013
|
+
|
1014
|
+
/** @internal */
|
1015
|
+
interface IEXTLightsIES_LightReference {
|
1016
|
+
light: number;
|
1017
|
+
color?: number[];
|
1018
|
+
multiplier?: number;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
/** @internal */
|
1022
|
+
interface IEXTLightsIES_Light extends IChildRootProperty {
|
1023
|
+
uri?: string;
|
1024
|
+
bufferView?: number;
|
1025
|
+
mimeType?: string;
|
1026
|
+
}
|
1027
|
+
|
1010
1028
|
/**
|
1011
1029
|
* Interfaces from the KHR_lights_punctual extension
|
1012
1030
|
*/
|
package/package.json
CHANGED