@dcl/playground-assets 7.9.3-16572655107.commit-d0b0754 → 7.9.3-16574576809.commit-c0a4156
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.
- package/dist/alpha.d.ts +2 -95
- package/dist/beta.d.ts +2 -95
- package/dist/index.bundled.d.ts +2 -95
- package/dist/index.js +5 -5
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +2 -95
- package/etc/playground-assets.api.json +72 -1081
- package/etc/playground-assets.api.md +1 -72
- package/package.json +4 -4
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.9.3-
|
4
|
+
"version": "7.9.3-16574576809.commit-c0a4156",
|
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": "
|
38
|
+
"commit": "c0a41564ac1a69bd3b43dbda91b7d24979d14ce0"
|
39
39
|
}
|
@@ -1310,7 +1310,6 @@ export declare const componentDefinitionByName: {
|
|
1310
1310
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
1311
1311
|
"core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
|
1312
1312
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
1313
|
-
"core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
|
1314
1313
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
1315
1314
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
1316
1315
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
@@ -2681,32 +2680,6 @@ export declare interface LastWriteWinElementSetComponentDefinition<T> extends Ba
|
|
2681
2680
|
getOrCreateMutable(entity: Entity, initialValue?: T): T;
|
2682
2681
|
}
|
2683
2682
|
|
2684
|
-
export declare const LightSource: LightSourceComponentDefinitionExtended;
|
2685
|
-
|
2686
|
-
/**
|
2687
|
-
* @public
|
2688
|
-
*/
|
2689
|
-
export declare interface LightSourceComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBLightSource> {
|
2690
|
-
/**
|
2691
|
-
* LightSource helper with constructor
|
2692
|
-
*/
|
2693
|
-
Type: LightSourceHelper;
|
2694
|
-
}
|
2695
|
-
|
2696
|
-
/**
|
2697
|
-
* @public
|
2698
|
-
*/
|
2699
|
-
export declare interface LightSourceHelper {
|
2700
|
-
/**
|
2701
|
-
* @returns a Light Source type
|
2702
|
-
*/
|
2703
|
-
Point: (point: PBLightSource_Point) => PBLightSource['type'];
|
2704
|
-
/**
|
2705
|
-
* @returns a Light Source type
|
2706
|
-
*/
|
2707
|
-
Spot: (spot: PBLightSource_Spot) => PBLightSource['type'];
|
2708
|
-
}
|
2709
|
-
|
2710
2683
|
/**
|
2711
2684
|
* User key event Listeners
|
2712
2685
|
* @public
|
@@ -4352,6 +4325,8 @@ export declare interface PBAvatarShape {
|
|
4352
4325
|
wearables: string[];
|
4353
4326
|
/** available emotes (default empty) */
|
4354
4327
|
emotes: string[];
|
4328
|
+
/** hides the skin + hair + facial features (default: false) */
|
4329
|
+
showOnlyWearables?: boolean | undefined;
|
4355
4330
|
}
|
4356
4331
|
|
4357
4332
|
/**
|
@@ -4627,71 +4602,6 @@ export declare namespace PBInputModifier_StandardInput {
|
|
4627
4602
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
|
4628
4603
|
}
|
4629
4604
|
|
4630
|
-
/**
|
4631
|
-
* @public
|
4632
|
-
*/
|
4633
|
-
export declare interface PBLightSource {
|
4634
|
-
/** default = true, whether the lightSource is active or not. */
|
4635
|
-
active?: boolean | undefined;
|
4636
|
-
/** 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. */
|
4637
|
-
color?: PBColor3 | undefined;
|
4638
|
-
/** default = 250, ranges from 1 (dim) to 100,000 (very bright), expressed in Lumens for Point and Spot. */
|
4639
|
-
intensity?: number | undefined;
|
4640
|
-
/** default = 0, how far the light travels, expressed in meters. If left at 0 will be computed automatically */
|
4641
|
-
range?: number | undefined;
|
4642
|
-
/** default = false, whether the light casts shadows or not. */
|
4643
|
-
shadow?: boolean | undefined;
|
4644
|
-
/** Texture mask through which shadows are cast to simulate caustics, soft shadows, and light shapes such as light entering from a window. */
|
4645
|
-
shadowMaskTexture?: TextureUnion | undefined;
|
4646
|
-
type?: {
|
4647
|
-
$case: "point";
|
4648
|
-
point: PBLightSource_Point;
|
4649
|
-
} | {
|
4650
|
-
$case: "spot";
|
4651
|
-
spot: PBLightSource_Spot;
|
4652
|
-
} | undefined;
|
4653
|
-
}
|
4654
|
-
|
4655
|
-
/**
|
4656
|
-
* @public
|
4657
|
-
*/
|
4658
|
-
export declare namespace PBLightSource {
|
4659
|
-
export function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
|
4660
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
|
4661
|
-
}
|
4662
|
-
|
4663
|
-
/**
|
4664
|
-
* @public
|
4665
|
-
*/
|
4666
|
-
export declare interface PBLightSource_Point {
|
4667
|
-
}
|
4668
|
-
|
4669
|
-
/**
|
4670
|
-
* @public
|
4671
|
-
*/
|
4672
|
-
export declare namespace PBLightSource_Point {
|
4673
|
-
export function encode(_: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
|
4674
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
|
4675
|
-
}
|
4676
|
-
|
4677
|
-
/**
|
4678
|
-
* @public
|
4679
|
-
*/
|
4680
|
-
export declare interface PBLightSource_Spot {
|
4681
|
-
/** 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. */
|
4682
|
-
innerAngle?: number | undefined;
|
4683
|
-
/** 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. */
|
4684
|
-
outerAngle?: number | undefined;
|
4685
|
-
}
|
4686
|
-
|
4687
|
-
/**
|
4688
|
-
* @public
|
4689
|
-
*/
|
4690
|
-
export declare namespace PBLightSource_Spot {
|
4691
|
-
export function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
|
4692
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
|
4693
|
-
}
|
4694
|
-
|
4695
4605
|
/**
|
4696
4606
|
* PBMainCamera.virtualCameraEntity defines which VirtualCamera entity is active at the moment.
|
4697
4607
|
* This component may hold 'repeated common.CameraTransition' transitionOverrides in the future
|
@@ -5897,7 +5807,6 @@ export declare namespace PBVideoPlayer {
|
|
5897
5807
|
* an 'instant' transition (like using speed/time = 0)
|
5898
5808
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
5899
5809
|
* the holding entity transform).
|
5900
|
-
* * The fov defines the Field of View of the virtual camera
|
5901
5810
|
*/
|
5902
5811
|
/**
|
5903
5812
|
* @public
|
@@ -5905,8 +5814,6 @@ export declare namespace PBVideoPlayer {
|
|
5905
5814
|
export declare interface PBVirtualCamera {
|
5906
5815
|
defaultTransition?: CameraTransition | undefined;
|
5907
5816
|
lookAtEntity?: number | undefined;
|
5908
|
-
/** default: 60 */
|
5909
|
-
fov?: number | undefined;
|
5910
5817
|
}
|
5911
5818
|
|
5912
5819
|
/**
|