@dcl/playground-assets 7.8.22-16119591948.commit-9ef869d → 7.8.22-16122579823.commit-25a7f83

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.8.22-16119591948.commit-9ef869d",
4
+ "version": "7.8.22-16122579823.commit-25a7f83",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "9ef869df14b805f6567304eef915422dcfc41d40"
38
+ "commit": "25a7f83c8ad84074052b8092285468520e93f521"
39
39
  }
@@ -1309,7 +1309,6 @@ export declare const componentDefinitionByName: {
1309
1309
  "core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
1310
1310
  "core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
1311
1311
  "core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
1312
- "core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
1313
1312
  "core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
1314
1313
  "core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
1315
1314
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
@@ -1323,7 +1322,6 @@ export declare const componentDefinitionByName: {
1323
1322
  "core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
1324
1323
  "core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
1325
1324
  "core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
1326
- "core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
1327
1325
  "core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
1328
1326
  "core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
1329
1327
  "core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
@@ -2677,32 +2675,6 @@ export declare interface LastWriteWinElementSetComponentDefinition<T> extends Ba
2677
2675
  getOrCreateMutable(entity: Entity, initialValue?: T): T;
2678
2676
  }
2679
2677
 
2680
- export declare const LightSource: LightSourceComponentDefinitionExtended;
2681
-
2682
- /**
2683
- * @public
2684
- */
2685
- export declare interface LightSourceComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBLightSource> {
2686
- /**
2687
- * LightSource helper with constructor
2688
- */
2689
- Type: LightSourceHelper;
2690
- }
2691
-
2692
- /**
2693
- * @public
2694
- */
2695
- export declare interface LightSourceHelper {
2696
- /**
2697
- * @returns a Light Source type
2698
- */
2699
- Point: (point: PBLightSource_Point) => PBLightSource['type'];
2700
- /**
2701
- * @returns a Light Source type
2702
- */
2703
- Spot: (spot: PBLightSource_Spot) => PBLightSource['type'];
2704
- }
2705
-
2706
2678
  /**
2707
2679
  * User key event Listeners
2708
2680
  * @public
@@ -4578,85 +4550,6 @@ export declare namespace PBInputModifier_StandardInput {
4578
4550
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
4579
4551
  }
4580
4552
 
4581
- /**
4582
- * @public
4583
- */
4584
- export declare interface PBLightSource {
4585
- /** default = true, whether the lightSource is active or not. */
4586
- active?: boolean | undefined;
4587
- /** default = Color.white, the tint of the light, in RGB format where each component is a floating point value with a range from 0 to 1. */
4588
- color?: PBColor3 | undefined;
4589
- /** default = 250, ranges from 1 (dim) to 100,000 (very bright), expressed in Lumens for Point and Spot. */
4590
- brightness?: number | undefined;
4591
- /** default = 10, how far the light travels, expressed in meters. */
4592
- range?: number | undefined;
4593
- type?: {
4594
- $case: "point";
4595
- point: PBLightSource_Point;
4596
- } | {
4597
- $case: "spot";
4598
- spot: PBLightSource_Spot;
4599
- } | undefined;
4600
- }
4601
-
4602
- /**
4603
- * @public
4604
- */
4605
- export declare namespace PBLightSource {
4606
- export function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
4607
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
4608
- }
4609
-
4610
- /**
4611
- * @public
4612
- */
4613
- export declare interface PBLightSource_Point {
4614
- /** default = ShadowType.ST_NONE The type of shadow the light source supports. */
4615
- shadow?: PBLightSource_ShadowType | undefined;
4616
- }
4617
-
4618
- /**
4619
- * @public
4620
- */
4621
- export declare namespace PBLightSource_Point {
4622
- export function encode(message: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
4623
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
4624
- }
4625
-
4626
- /**
4627
- * @public
4628
- */
4629
- export declare const enum PBLightSource_ShadowType {
4630
- /** ST_NONE - No shadows are cast from this LightSource. */
4631
- ST_NONE = 0,
4632
- /** ST_SOFT - More realistic type of shadow that reduces block artifacts, noise or pixelation, but requires more processing. */
4633
- ST_SOFT = 1,
4634
- /** ST_HARD - Less realistic type of shadow but more performant, uses hard edges. */
4635
- ST_HARD = 2
4636
- }
4637
-
4638
- /**
4639
- * @public
4640
- */
4641
- export declare interface PBLightSource_Spot {
4642
- /** default = 21.8. Inner angle can't be higher than outer angle, otherwise will default to same value. Min value is 0. Max value is 179. */
4643
- innerAngle?: number | undefined;
4644
- /** default = 30. Outer angle can't be lower than inner angle, otherwise will inner angle will be set to same value. Max value is 179. */
4645
- outerAngle?: number | undefined;
4646
- /** default = ShadowType.ST_NONE The type of shadow the light source supports. */
4647
- shadow?: PBLightSource_ShadowType | undefined;
4648
- /** Texture mask through which shadows are cast to simulate caustics, soft shadows, and light shapes such as light entering from a window. */
4649
- shadowMaskTexture?: TextureUnion | undefined;
4650
- }
4651
-
4652
- /**
4653
- * @public
4654
- */
4655
- export declare namespace PBLightSource_Spot {
4656
- export function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
4657
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
4658
- }
4659
-
4660
4553
  /**
4661
4554
  * PBMainCamera.virtualCameraEntity defines which VirtualCamera entity is active at the moment.
4662
4555
  * This component may hold 'repeated common.CameraTransition' transitionOverrides in the future
@@ -5330,28 +5223,6 @@ export declare namespace PBRealmInfo {
5330
5223
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBRealmInfo;
5331
5224
  }
5332
5225
 
5333
- /**
5334
- * The SkyboxTime component allows controlling the time of day for the skybox,
5335
- * affecting the lighting and appearance of the sky in the scene.
5336
- */
5337
- /**
5338
- * @public
5339
- */
5340
- export declare interface PBSkyboxTime {
5341
- /** fixed time of day, represented as a number of seconds since the start of the day, where 0 is 00:00hs, 43200 is 12:00hs and 86400 is 24:00hs */
5342
- fixedTime: number;
5343
- /** default = TransitionMode.TM_FORWARD, controls the direction of time transitions */
5344
- transitionMode?: TransitionMode | undefined;
5345
- }
5346
-
5347
- /**
5348
- * @public
5349
- */
5350
- export declare namespace PBSkyboxTime {
5351
- export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
5352
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
5353
- }
5354
-
5355
5226
  /**
5356
5227
  * The TextShape component renders customizable floating text.
5357
5228
  *
@@ -5862,7 +5733,6 @@ export declare namespace PBVideoPlayer {
5862
5733
  * an 'instant' transition (like using speed/time = 0)
5863
5734
  * * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
5864
5735
  * the holding entity transform).
5865
- * * The fov defines the Field of View of the virtual camera
5866
5736
  */
5867
5737
  /**
5868
5738
  * @public
@@ -5870,8 +5740,6 @@ export declare namespace PBVideoPlayer {
5870
5740
  export declare interface PBVirtualCamera {
5871
5741
  defaultTransition?: CameraTransition | undefined;
5872
5742
  lookAtEntity?: number | undefined;
5873
- /** default: 60 */
5874
- fov?: number | undefined;
5875
5743
  }
5876
5744
 
5877
5745
  /**
@@ -7213,9 +7081,6 @@ export declare namespace Schemas {
7213
7081
  }) => void;
7214
7082
  }
7215
7083
 
7216
- /** @public */
7217
- export declare const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
7218
-
7219
7084
  /**
7220
7085
  * @public
7221
7086
  */
@@ -7482,17 +7347,6 @@ export declare type TransformType = {
7482
7347
  */
7483
7348
  export declare type TransformTypeWithOptionals = Partial<TransformType>;
7484
7349
 
7485
- /** Controls the direction for animated skybox transitions */
7486
- /**
7487
- * @public
7488
- */
7489
- export declare const enum TransitionMode {
7490
- /** TM_FORWARD - transitions forward (default) */
7491
- TM_FORWARD = 0,
7492
- /** TM_BACKWARD - transitions backward */
7493
- TM_BACKWARD = 1
7494
- }
7495
-
7496
7350
  /**
7497
7351
  * @public
7498
7352
  */