@dcl/playground-assets 7.9.3-16627744216.commit-f509423 → 7.9.3-16809211616.commit-064a361

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.
@@ -640,6 +640,7 @@ export const componentDefinitionByName: {
640
640
  "core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
641
641
  "core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
642
642
  "core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
643
+ "core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
643
644
  "core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
644
645
  "core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
645
646
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
@@ -1578,6 +1579,9 @@ export interface LastWriteWinElementSetComponentDefinition<T> extends BaseCompon
1578
1579
  getOrNull(entity: Entity): DeepReadonly<T> | null;
1579
1580
  }
1580
1581
 
1582
+ // @public (undocumented)
1583
+ export const LightSource: LastWriteWinElementSetComponentDefinition<PBLightSource>;
1584
+
1581
1585
  // @public
1582
1586
  export type Listeners = {
1583
1587
  onMouseDown?: Callback;
@@ -2456,6 +2460,58 @@ export namespace PBInputModifier_StandardInput {
2456
2460
  export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
2457
2461
  }
2458
2462
 
2463
+ // @public (undocumented)
2464
+ export interface PBLightSource {
2465
+ active?: boolean | undefined;
2466
+ color?: PBColor3 | undefined;
2467
+ intensity?: number | undefined;
2468
+ range?: number | undefined;
2469
+ shadow?: boolean | undefined;
2470
+ shadowMaskTexture?: TextureUnion | undefined;
2471
+ // (undocumented)
2472
+ type?: {
2473
+ $case: "point";
2474
+ point: PBLightSource_Point;
2475
+ } | {
2476
+ $case: "spot";
2477
+ spot: PBLightSource_Spot;
2478
+ } | undefined;
2479
+ }
2480
+
2481
+ // @public (undocumented)
2482
+ export namespace PBLightSource {
2483
+ // (undocumented)
2484
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
2485
+ // (undocumented)
2486
+ export function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
2487
+ }
2488
+
2489
+ // @public (undocumented)
2490
+ export interface PBLightSource_Point {
2491
+ }
2492
+
2493
+ // @public (undocumented)
2494
+ export namespace PBLightSource_Point {
2495
+ // (undocumented)
2496
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
2497
+ // (undocumented)
2498
+ export function encode(_: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
2499
+ }
2500
+
2501
+ // @public (undocumented)
2502
+ export interface PBLightSource_Spot {
2503
+ innerAngle?: number | undefined;
2504
+ outerAngle?: number | undefined;
2505
+ }
2506
+
2507
+ // @public (undocumented)
2508
+ export namespace PBLightSource_Spot {
2509
+ // (undocumented)
2510
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
2511
+ // (undocumented)
2512
+ export function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
2513
+ }
2514
+
2459
2515
  // @public (undocumented)
2460
2516
  export interface PBMainCamera {
2461
2517
  virtualCameraEntity?: number | undefined;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.9.3-16627744216.commit-f509423",
4
+ "version": "7.9.3-16809211616.commit-064a361",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.9.3-16627744216.commit-f509423",
8
- "@dcl/sdk": "7.9.3-16627744216.commit-f509423"
7
+ "@dcl/js-runtime": "7.9.3-16809211616.commit-064a361",
8
+ "@dcl/sdk": "7.9.3-16809211616.commit-064a361"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "f509423dc680624705abc494f373fa50768fe65d"
35
+ "commit": "064a361b107085c8ce67ef5e3285f50e9137561f"
36
36
  }