babylonjs-gltf2interface 8.33.4 → 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
|
|
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
|
-
|
|
1449
|
+
type: EXTLightsArea_LightType;
|
|
1450
1450
|
color?: number[];
|
|
1451
1451
|
intensity?: number;
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1452
|
+
size?: number;
|
|
1453
|
+
rect?: {
|
|
1454
|
+
aspect: number;
|
|
1455
|
+
};
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
1458
1458
|
/** @internal */
|
package/package.json
CHANGED