babylonjs-gltf2interface 8.33.3 → 8.34.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.
@@ -1434,9 +1434,9 @@ declare module BABYLON.GLTF2 {
1434
1434
  */
1435
1435
 
1436
1436
  /** @internal */
1437
- const enum EXTLightsArea_LightShape {
1437
+ const enum EXTLightsArea_LightType {
1438
1438
  RECT = "rect",
1439
- DISK = "disk"
1439
+ DISK = "disk",
1440
1440
  }
1441
1441
 
1442
1442
  /** @internal */
@@ -1446,13 +1446,13 @@ declare module BABYLON.GLTF2 {
1446
1446
 
1447
1447
  /** @internal */
1448
1448
  interface IEXTLightsArea_Light extends IChildRootProperty {
1449
- shape: EXTLightsArea_LightShape;
1449
+ type: EXTLightsArea_LightType;
1450
1450
  color?: number[];
1451
1451
  intensity?: number;
1452
- type?: "area";
1453
- width?: number;
1454
- height?: number;
1455
- radius?: number;
1452
+ size?: number;
1453
+ rect?: {
1454
+ aspect: number;
1455
+ };
1456
1456
  }
1457
1457
 
1458
1458
  /** @internal */
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.33.3",
4
+ "version": "8.34.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/BabylonJS/Babylon.js.git"