@dcl/playground-assets 7.14.1-19673051995.commit-94f9a7a → 7.14.1-19678724586.commit-33186ef
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 +59 -1
- package/dist/beta.d.ts +59 -1
- package/dist/index.bundled.d.ts +59 -1
- 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 +59 -1
- package/etc/playground-assets.api.json +606 -1
- package/etc/playground-assets.api.md +31 -0
- package/package.json +4 -4
|
@@ -142,6 +142,9 @@ export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmo
|
|
|
142
142
|
// @public (undocumented)
|
|
143
143
|
export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
144
144
|
|
|
145
|
+
// @public (undocumented)
|
|
146
|
+
export const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
|
|
147
|
+
|
|
145
148
|
// @public (undocumented)
|
|
146
149
|
export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
147
150
|
|
|
@@ -629,6 +632,7 @@ export const componentDefinitionByName: {
|
|
|
629
632
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
630
633
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
631
634
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
635
|
+
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
632
636
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
633
637
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
634
638
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -1437,6 +1441,8 @@ export const enum InputAction {
|
|
|
1437
1441
|
// (undocumented)
|
|
1438
1442
|
IA_LEFT = 7,
|
|
1439
1443
|
// (undocumented)
|
|
1444
|
+
IA_MODIFIER = 14,
|
|
1445
|
+
// (undocumented)
|
|
1440
1446
|
IA_POINTER = 0,
|
|
1441
1447
|
// (undocumented)
|
|
1442
1448
|
IA_PRIMARY = 1,
|
|
@@ -2181,6 +2187,9 @@ export namespace PBAudioSource {
|
|
|
2181
2187
|
// @public (undocumented)
|
|
2182
2188
|
export interface PBAudioStream {
|
|
2183
2189
|
playing?: boolean | undefined;
|
|
2190
|
+
spatial?: boolean | undefined;
|
|
2191
|
+
spatialMaxDistance?: number | undefined;
|
|
2192
|
+
spatialMinDistance?: number | undefined;
|
|
2184
2193
|
url: string;
|
|
2185
2194
|
volume?: number | undefined;
|
|
2186
2195
|
}
|
|
@@ -2262,6 +2271,24 @@ export namespace PBAvatarEquippedData {
|
|
|
2262
2271
|
export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
|
|
2263
2272
|
}
|
|
2264
2273
|
|
|
2274
|
+
// @public (undocumented)
|
|
2275
|
+
export interface PBAvatarLocomotionSettings {
|
|
2276
|
+
hardLandingCooldown?: number | undefined;
|
|
2277
|
+
jogSpeed?: number | undefined;
|
|
2278
|
+
jumpHeight?: number | undefined;
|
|
2279
|
+
runJumpHeight?: number | undefined;
|
|
2280
|
+
runSpeed?: number | undefined;
|
|
2281
|
+
walkSpeed?: number | undefined;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
// @public (undocumented)
|
|
2285
|
+
export namespace PBAvatarLocomotionSettings {
|
|
2286
|
+
// (undocumented)
|
|
2287
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
|
|
2288
|
+
// (undocumented)
|
|
2289
|
+
export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2265
2292
|
// @public (undocumented)
|
|
2266
2293
|
export interface PBAvatarModifierArea {
|
|
2267
2294
|
area: PBVector3 | undefined;
|
|
@@ -3484,6 +3511,9 @@ export interface PBVideoPlayer {
|
|
|
3484
3511
|
playbackRate?: number | undefined;
|
|
3485
3512
|
playing?: boolean | undefined;
|
|
3486
3513
|
position?: number | undefined;
|
|
3514
|
+
spatial?: boolean | undefined;
|
|
3515
|
+
spatialMaxDistance?: number | undefined;
|
|
3516
|
+
spatialMinDistance?: number | undefined;
|
|
3487
3517
|
src: string;
|
|
3488
3518
|
volume?: number | undefined;
|
|
3489
3519
|
}
|
|
@@ -3500,6 +3530,7 @@ export namespace PBVideoPlayer {
|
|
|
3500
3530
|
export interface PBVirtualCamera {
|
|
3501
3531
|
// (undocumented)
|
|
3502
3532
|
defaultTransition?: CameraTransition | undefined;
|
|
3533
|
+
fov?: number | undefined;
|
|
3503
3534
|
// (undocumented)
|
|
3504
3535
|
lookAtEntity?: number | undefined;
|
|
3505
3536
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/playground-assets",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.14.1-
|
|
4
|
+
"version": "7.14.1-19678724586.commit-33186ef",
|
|
5
5
|
"author": "Decentraland",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@dcl/js-runtime": "7.14.1-
|
|
8
|
-
"@dcl/sdk": "7.14.1-
|
|
7
|
+
"@dcl/js-runtime": "7.14.1-19678724586.commit-33186ef",
|
|
8
|
+
"@dcl/sdk": "7.14.1-19678724586.commit-33186ef"
|
|
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": "33186efbcd48f65eea8fa06e1de23168f7f06a8b"
|
|
36
36
|
}
|