@dcl/playground-assets 7.3.24-6551112177.commit-c541465 → 7.3.24-6551297996.commit-7436455

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.3.24-6551112177.commit-c541465",
4
+ "version": "7.3.24-6551297996.commit-7436455",
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": "c541465028cb2e20fdc710c3c8d3114dcf8423eb"
38
+ "commit": "74364556d34605cde5caad22d7d5b728c71d3f34"
39
39
  }
@@ -110,6 +110,15 @@ export declare const enum AvatarAnchorPointType {
110
110
  /** @public */
111
111
  export declare const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAttach>;
112
112
 
113
+ /** @public */
114
+ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
115
+
116
+ /** @public */
117
+ export declare const AvatarEmoteCommand: LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>;
118
+
119
+ /** @public */
120
+ export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
121
+
113
122
  /** @public */
114
123
  export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
115
124
 
@@ -1166,6 +1175,9 @@ export declare const componentDefinitionByName: {
1166
1175
  "core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
1167
1176
  "core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
1168
1177
  "core::AvatarAttach": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarAttach>>;
1178
+ "core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
1179
+ "core::AvatarEmoteCommand": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>>;
1180
+ "core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
1169
1181
  "core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
1170
1182
  "core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
1171
1183
  "core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
@@ -1178,6 +1190,7 @@ export declare const componentDefinitionByName: {
1178
1190
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
1179
1191
  "core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
1180
1192
  "core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
1193
+ "core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
1181
1194
  "core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
1182
1195
  "core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
1183
1196
  "core::PointerLock": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerLock>>;
@@ -3703,6 +3716,82 @@ export declare namespace PBAvatarAttach {
3703
3716
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarAttach;
3704
3717
  }
3705
3718
 
3719
+ /** AvatarBase sets all modifiers over the avatar's apparence. */
3720
+ /**
3721
+ * @public
3722
+ */
3723
+ export declare interface PBAvatarBase {
3724
+ skinColor: PBColor3 | undefined;
3725
+ eyesColor: PBColor3 | undefined;
3726
+ hairColor: PBColor3 | undefined;
3727
+ bodyShapeUrn: string;
3728
+ name: string;
3729
+ }
3730
+
3731
+ /**
3732
+ * @public
3733
+ */
3734
+ export declare namespace PBAvatarBase {
3735
+ export function encode(message: PBAvatarBase, writer?: _m0.Writer): _m0.Writer;
3736
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarBase;
3737
+ }
3738
+
3739
+ /**
3740
+ * AvatarEmoteCommand is a grow only value set, used to signal the renderer about
3741
+ * avatar emotes playback.
3742
+ */
3743
+ /**
3744
+ * @public
3745
+ */
3746
+ export declare interface PBAvatarEmoteCommand {
3747
+ emoteCommand: PBAvatarEmoteCommand_EmoteCommand | undefined;
3748
+ }
3749
+
3750
+ /**
3751
+ * @public
3752
+ */
3753
+ export declare namespace PBAvatarEmoteCommand {
3754
+ export function encode(message: PBAvatarEmoteCommand, writer?: _m0.Writer): _m0.Writer;
3755
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand;
3756
+ }
3757
+
3758
+ /**
3759
+ * @public
3760
+ */
3761
+ export declare interface PBAvatarEmoteCommand_EmoteCommand {
3762
+ emoteUrn: string;
3763
+ loop: boolean;
3764
+ }
3765
+
3766
+ /**
3767
+ * @public
3768
+ */
3769
+ export declare namespace PBAvatarEmoteCommand_EmoteCommand {
3770
+ export function encode(message: PBAvatarEmoteCommand_EmoteCommand, writer?: _m0.Writer): _m0.Writer;
3771
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand_EmoteCommand;
3772
+ }
3773
+
3774
+ /**
3775
+ * AvatarEquipData is used to read the information about the avatar's owneables.
3776
+ * this component is written by the engine using the communications transports'
3777
+ * data.
3778
+ */
3779
+ /**
3780
+ * @public
3781
+ */
3782
+ export declare interface PBAvatarEquippedData {
3783
+ wearableUrns: string[];
3784
+ emotesUrns: string[];
3785
+ }
3786
+
3787
+ /**
3788
+ * @public
3789
+ */
3790
+ export declare namespace PBAvatarEquippedData {
3791
+ export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
3792
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
3793
+ }
3794
+
3706
3795
  /**
3707
3796
  * The AvatarModifierArea component can be attached to an Entity to define a region of space where
3708
3797
  * avatar behavior changes.
@@ -4298,6 +4387,28 @@ export declare namespace PBNftShape {
4298
4387
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBNftShape;
4299
4388
  }
4300
4389
 
4390
+ /**
4391
+ * PlayerIdentityData is used to read the information about the avatar's
4392
+ * identity. this component is written by the engine using the communications
4393
+ * transports' data.
4394
+ */
4395
+ /**
4396
+ * @public
4397
+ */
4398
+ export declare interface PBPlayerIdentityData {
4399
+ /** ethereum address of this player */
4400
+ address: string;
4401
+ isGuest: boolean;
4402
+ }
4403
+
4404
+ /**
4405
+ * @public
4406
+ */
4407
+ export declare namespace PBPlayerIdentityData {
4408
+ export function encode(message: PBPlayerIdentityData, writer?: _m0.Writer): _m0.Writer;
4409
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPlayerIdentityData;
4410
+ }
4411
+
4301
4412
  /**
4302
4413
  * PointerEvents adds configurable pointer-based interactions to the attached Entity.
4303
4414
  *
@@ -5127,6 +5238,9 @@ export declare namespace Plane {
5127
5238
  export function signedDistanceTo(plane: ReadonlyPlane, point: Vector3.ReadonlyVector3): number;
5128
5239
  }
5129
5240
 
5241
+ /** @public */
5242
+ export declare const PlayerIdentityData: LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>;
5243
+
5130
5244
  /** @public */
5131
5245
  export declare const PointerEvents: LastWriteWinElementSetComponentDefinition<PBPointerEvents>;
5132
5246