babylonjs-gltf2interface 8.26.2 → 8.27.1

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.
@@ -1388,6 +1388,37 @@ declare module BABYLON.GLTF2 {
1388
1388
  filter?: "NONE" | "OCTAHEDRAL" | "QUATERNION" | "EXPONENTIAL";
1389
1389
  }
1390
1390
 
1391
+ /**
1392
+ * Interfaces from the EXT_lights_area extension
1393
+ */
1394
+
1395
+ /** @internal */
1396
+ const enum EXTLightsArea_LightShape {
1397
+ RECT = "rect",
1398
+ DISK = "disk"
1399
+ }
1400
+
1401
+ /** @internal */
1402
+ interface IEXTLightsArea_LightReference {
1403
+ light: number;
1404
+ }
1405
+
1406
+ /** @internal */
1407
+ interface IEXTLightsArea_Light extends IChildRootProperty {
1408
+ shape: EXTLightsArea_LightShape;
1409
+ color?: number[];
1410
+ intensity?: number;
1411
+ type?: "area";
1412
+ width?: number;
1413
+ height?: number;
1414
+ radius?: number;
1415
+ }
1416
+
1417
+ /** @internal */
1418
+ interface IEXTLightsArea {
1419
+ lights: IEXTLightsArea_Light[];
1420
+ }
1421
+
1391
1422
  /**
1392
1423
  * Interfaces for the KHR_interactivity extension
1393
1424
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "babylonjs-gltf2interface",
3
3
  "description": "A typescript declaration of babylon's gltf2 interface.",
4
- "version": "8.26.2",
4
+ "version": "8.27.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/BabylonJS/Babylon.js.git"