@dcl/playground-assets 7.3.29 → 7.3.30-7034348340.commit-a8a623c
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 +114 -0
- package/dist/beta.d.ts +114 -0
- package/dist/index.bundled.d.ts +114 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +114 -0
- package/etc/playground-assets.api.json +1640 -195
- package/etc/playground-assets.api.md +99 -0
- package/package.json +4 -4
@@ -71,6 +71,15 @@ export const enum AvatarAnchorPointType {
|
|
71
71
|
// @public (undocumented)
|
72
72
|
export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAttach>;
|
73
73
|
|
74
|
+
// @public (undocumented)
|
75
|
+
export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
|
76
|
+
|
77
|
+
// @public (undocumented)
|
78
|
+
export const AvatarEmoteCommand: LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>;
|
79
|
+
|
80
|
+
// @public (undocumented)
|
81
|
+
export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
82
|
+
|
74
83
|
// @public (undocumented)
|
75
84
|
export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
76
85
|
|
@@ -514,6 +523,9 @@ export const componentDefinitionByName: {
|
|
514
523
|
"core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
|
515
524
|
"core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
|
516
525
|
"core::AvatarAttach": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarAttach>>;
|
526
|
+
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
527
|
+
"core::AvatarEmoteCommand": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEmoteCommand>>;
|
528
|
+
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
517
529
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
518
530
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
519
531
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
@@ -526,6 +538,7 @@ export const componentDefinitionByName: {
|
|
526
538
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
527
539
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
528
540
|
"core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
|
541
|
+
"core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
|
529
542
|
"core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
|
530
543
|
"core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
|
531
544
|
"core::PointerLock": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerLock>>;
|
@@ -2111,6 +2124,74 @@ export namespace PBAvatarAttach {
|
|
2111
2124
|
export function encode(message: PBAvatarAttach, writer?: _m0.Writer): _m0.Writer;
|
2112
2125
|
}
|
2113
2126
|
|
2127
|
+
// @public (undocumented)
|
2128
|
+
export interface PBAvatarBase {
|
2129
|
+
// (undocumented)
|
2130
|
+
bodyShapeUrn: string;
|
2131
|
+
// (undocumented)
|
2132
|
+
eyesColor: PBColor3 | undefined;
|
2133
|
+
// (undocumented)
|
2134
|
+
hairColor: PBColor3 | undefined;
|
2135
|
+
// (undocumented)
|
2136
|
+
name: string;
|
2137
|
+
// (undocumented)
|
2138
|
+
skinColor: PBColor3 | undefined;
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
// @public (undocumented)
|
2142
|
+
export namespace PBAvatarBase {
|
2143
|
+
// (undocumented)
|
2144
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarBase;
|
2145
|
+
// (undocumented)
|
2146
|
+
export function encode(message: PBAvatarBase, writer?: _m0.Writer): _m0.Writer;
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
// @public (undocumented)
|
2150
|
+
export interface PBAvatarEmoteCommand {
|
2151
|
+
// (undocumented)
|
2152
|
+
emoteCommand: PBAvatarEmoteCommand_EmoteCommand | undefined;
|
2153
|
+
}
|
2154
|
+
|
2155
|
+
// @public (undocumented)
|
2156
|
+
export namespace PBAvatarEmoteCommand {
|
2157
|
+
// (undocumented)
|
2158
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand;
|
2159
|
+
// (undocumented)
|
2160
|
+
export function encode(message: PBAvatarEmoteCommand, writer?: _m0.Writer): _m0.Writer;
|
2161
|
+
}
|
2162
|
+
|
2163
|
+
// @public (undocumented)
|
2164
|
+
export interface PBAvatarEmoteCommand_EmoteCommand {
|
2165
|
+
// (undocumented)
|
2166
|
+
emoteUrn: string;
|
2167
|
+
// (undocumented)
|
2168
|
+
loop: boolean;
|
2169
|
+
}
|
2170
|
+
|
2171
|
+
// @public (undocumented)
|
2172
|
+
export namespace PBAvatarEmoteCommand_EmoteCommand {
|
2173
|
+
// (undocumented)
|
2174
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEmoteCommand_EmoteCommand;
|
2175
|
+
// (undocumented)
|
2176
|
+
export function encode(message: PBAvatarEmoteCommand_EmoteCommand, writer?: _m0.Writer): _m0.Writer;
|
2177
|
+
}
|
2178
|
+
|
2179
|
+
// @public (undocumented)
|
2180
|
+
export interface PBAvatarEquippedData {
|
2181
|
+
// (undocumented)
|
2182
|
+
emotesUrns: string[];
|
2183
|
+
// (undocumented)
|
2184
|
+
wearableUrns: string[];
|
2185
|
+
}
|
2186
|
+
|
2187
|
+
// @public (undocumented)
|
2188
|
+
export namespace PBAvatarEquippedData {
|
2189
|
+
// (undocumented)
|
2190
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
|
2191
|
+
// (undocumented)
|
2192
|
+
export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
|
2193
|
+
}
|
2194
|
+
|
2114
2195
|
// @public (undocumented)
|
2115
2196
|
export interface PBAvatarModifierArea {
|
2116
2197
|
area: PBVector3 | undefined;
|
@@ -2504,6 +2585,21 @@ export namespace PBNftShape {
|
|
2504
2585
|
export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
|
2505
2586
|
}
|
2506
2587
|
|
2588
|
+
// @public (undocumented)
|
2589
|
+
export interface PBPlayerIdentityData {
|
2590
|
+
address: string;
|
2591
|
+
// (undocumented)
|
2592
|
+
isGuest: boolean;
|
2593
|
+
}
|
2594
|
+
|
2595
|
+
// @public (undocumented)
|
2596
|
+
export namespace PBPlayerIdentityData {
|
2597
|
+
// (undocumented)
|
2598
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPlayerIdentityData;
|
2599
|
+
// (undocumented)
|
2600
|
+
export function encode(message: PBPlayerIdentityData, writer?: _m0.Writer): _m0.Writer;
|
2601
|
+
}
|
2602
|
+
|
2507
2603
|
// @public (undocumented)
|
2508
2604
|
export interface PBPointerEvents {
|
2509
2605
|
pointerEvents: PBPointerEvents_Entry[];
|
@@ -3093,6 +3189,9 @@ export namespace Plane {
|
|
3093
3189
|
export function transform(plane: ReadonlyPlane, transformation: Matrix.ReadonlyMatrix): MutablePlane;
|
3094
3190
|
}
|
3095
3191
|
|
3192
|
+
// @public (undocumented)
|
3193
|
+
export const PlayerIdentityData: LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>;
|
3194
|
+
|
3096
3195
|
// @public (undocumented)
|
3097
3196
|
export const PointerEvents: LastWriteWinElementSetComponentDefinition<PBPointerEvents>;
|
3098
3197
|
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.3.
|
4
|
+
"version": "7.3.30-7034348340.commit-a8a623c",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.3.
|
8
|
-
"@dcl/sdk": "7.3.
|
7
|
+
"@dcl/js-runtime": "7.3.30-7034348340.commit-a8a623c",
|
8
|
+
"@dcl/sdk": "7.3.30-7034348340.commit-a8a623c"
|
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": "
|
35
|
+
"commit": "a8a623c9c84d76ea47bc8dbea7e2a9d978268c8b"
|
36
36
|
}
|