@dcl/playground-assets 7.14.1-19706352785.commit-88215fe → 7.14.1-19707837499.commit-31fb204
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 +1 -39
- package/dist/beta.d.ts +1 -39
- package/dist/index.bundled.d.ts +1 -39
- 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 +1 -39
- package/etc/playground-assets.api.json +1 -444
- package/etc/playground-assets.api.md +0 -25
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/sdk",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.14.1-
|
|
4
|
+
"version": "7.14.1-19707837499.commit-31fb204",
|
|
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": "31fb204a4192d11aa8a4e32669114883d7ce9732"
|
|
39
39
|
}
|
|
@@ -184,9 +184,6 @@ export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBA
|
|
|
184
184
|
/** @public */
|
|
185
185
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
186
186
|
|
|
187
|
-
/** @public */
|
|
188
|
-
export declare const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
|
|
189
|
-
|
|
190
187
|
/** @public */
|
|
191
188
|
export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
192
189
|
|
|
@@ -1304,7 +1301,6 @@ export declare const componentDefinitionByName: {
|
|
|
1304
1301
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
1305
1302
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
1306
1303
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
1307
|
-
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
1308
1304
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
1309
1305
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
1310
1306
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -2496,8 +2492,7 @@ export declare const enum InputAction {
|
|
|
2496
2492
|
IA_ACTION_3 = 10,
|
|
2497
2493
|
IA_ACTION_4 = 11,
|
|
2498
2494
|
IA_ACTION_5 = 12,
|
|
2499
|
-
IA_ACTION_6 = 13
|
|
2500
|
-
IA_MODIFIER = 14
|
|
2495
|
+
IA_ACTION_6 = 13
|
|
2501
2496
|
}
|
|
2502
2497
|
|
|
2503
2498
|
export declare const InputModifier: InputModifierComponentDefinitionExtended;
|
|
@@ -4313,36 +4308,6 @@ export declare namespace PBAvatarEquippedData {
|
|
|
4313
4308
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
|
|
4314
4309
|
}
|
|
4315
4310
|
|
|
4316
|
-
/**
|
|
4317
|
-
* The PBAvatarLocomotionSettings component allows scenes to modify locomotion settings defining things such
|
|
4318
|
-
* as the avatar movement speed, jump height etc.
|
|
4319
|
-
*/
|
|
4320
|
-
/**
|
|
4321
|
-
* @public
|
|
4322
|
-
*/
|
|
4323
|
-
export declare interface PBAvatarLocomotionSettings {
|
|
4324
|
-
/** Maximum speed when walking (in meters per second) */
|
|
4325
|
-
walkSpeed?: number | undefined;
|
|
4326
|
-
/** Maximum speed when jogging (in meters per second) */
|
|
4327
|
-
jogSpeed?: number | undefined;
|
|
4328
|
-
/** Maximum speed when running (in meters per second) */
|
|
4329
|
-
runSpeed?: number | undefined;
|
|
4330
|
-
/** Height of a regular jump (in meters) */
|
|
4331
|
-
jumpHeight?: number | undefined;
|
|
4332
|
-
/** Height of a jump while running (in meters) */
|
|
4333
|
-
runJumpHeight?: number | undefined;
|
|
4334
|
-
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4335
|
-
hardLandingCooldown?: number | undefined;
|
|
4336
|
-
}
|
|
4337
|
-
|
|
4338
|
-
/**
|
|
4339
|
-
* @public
|
|
4340
|
-
*/
|
|
4341
|
-
export declare namespace PBAvatarLocomotionSettings {
|
|
4342
|
-
export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
|
|
4343
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
|
|
4344
|
-
}
|
|
4345
|
-
|
|
4346
4311
|
/**
|
|
4347
4312
|
* The AvatarModifierArea component can be attached to an Entity to define a region of space where
|
|
4348
4313
|
* avatar behavior changes.
|
|
@@ -6069,7 +6034,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6069
6034
|
* an 'instant' transition (like using speed/time = 0)
|
|
6070
6035
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6071
6036
|
* the holding entity transform).
|
|
6072
|
-
* * The fov defines the Field of View of the virtual camera
|
|
6073
6037
|
*/
|
|
6074
6038
|
/**
|
|
6075
6039
|
* @public
|
|
@@ -6077,8 +6041,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6077
6041
|
export declare interface PBVirtualCamera {
|
|
6078
6042
|
defaultTransition?: CameraTransition | undefined;
|
|
6079
6043
|
lookAtEntity?: number | undefined;
|
|
6080
|
-
/** default: 60 */
|
|
6081
|
-
fov?: number | undefined;
|
|
6082
6044
|
}
|
|
6083
6045
|
|
|
6084
6046
|
/**
|
|
@@ -1973,43 +1973,6 @@
|
|
|
1973
1973
|
"endIndex": 5
|
|
1974
1974
|
}
|
|
1975
1975
|
},
|
|
1976
|
-
{
|
|
1977
|
-
"kind": "Variable",
|
|
1978
|
-
"canonicalReference": "@dcl/playground-assets!AvatarLocomotionSettings:var",
|
|
1979
|
-
"docComment": "/**\n * @public\n */\n",
|
|
1980
|
-
"excerptTokens": [
|
|
1981
|
-
{
|
|
1982
|
-
"kind": "Content",
|
|
1983
|
-
"text": "AvatarLocomotionSettings: "
|
|
1984
|
-
},
|
|
1985
|
-
{
|
|
1986
|
-
"kind": "Reference",
|
|
1987
|
-
"text": "LastWriteWinElementSetComponentDefinition",
|
|
1988
|
-
"canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
|
|
1989
|
-
},
|
|
1990
|
-
{
|
|
1991
|
-
"kind": "Content",
|
|
1992
|
-
"text": "<"
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"kind": "Reference",
|
|
1996
|
-
"text": "PBAvatarLocomotionSettings",
|
|
1997
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
|
|
1998
|
-
},
|
|
1999
|
-
{
|
|
2000
|
-
"kind": "Content",
|
|
2001
|
-
"text": ">"
|
|
2002
|
-
}
|
|
2003
|
-
],
|
|
2004
|
-
"fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
|
|
2005
|
-
"isReadonly": true,
|
|
2006
|
-
"releaseTag": "Public",
|
|
2007
|
-
"name": "AvatarLocomotionSettings",
|
|
2008
|
-
"variableTypeTokenRange": {
|
|
2009
|
-
"startIndex": 1,
|
|
2010
|
-
"endIndex": 5
|
|
2011
|
-
}
|
|
2012
|
-
},
|
|
2013
1976
|
{
|
|
2014
1977
|
"kind": "Variable",
|
|
2015
1978
|
"canonicalReference": "@dcl/playground-assets!AvatarModifierArea:var",
|
|
@@ -12572,33 +12535,6 @@
|
|
|
12572
12535
|
"text": "PBAvatarEquippedData",
|
|
12573
12536
|
"canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData"
|
|
12574
12537
|
},
|
|
12575
|
-
{
|
|
12576
|
-
"kind": "Content",
|
|
12577
|
-
"text": ">>;\n \"core::AvatarLocomotionSettings\": "
|
|
12578
|
-
},
|
|
12579
|
-
{
|
|
12580
|
-
"kind": "Reference",
|
|
12581
|
-
"text": "LwwComponentGetter",
|
|
12582
|
-
"canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
|
|
12583
|
-
},
|
|
12584
|
-
{
|
|
12585
|
-
"kind": "Content",
|
|
12586
|
-
"text": "<"
|
|
12587
|
-
},
|
|
12588
|
-
{
|
|
12589
|
-
"kind": "Reference",
|
|
12590
|
-
"text": "LastWriteWinElementSetComponentDefinition",
|
|
12591
|
-
"canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
|
|
12592
|
-
},
|
|
12593
|
-
{
|
|
12594
|
-
"kind": "Content",
|
|
12595
|
-
"text": "<"
|
|
12596
|
-
},
|
|
12597
|
-
{
|
|
12598
|
-
"kind": "Reference",
|
|
12599
|
-
"text": "PBAvatarLocomotionSettings",
|
|
12600
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
|
|
12601
|
-
},
|
|
12602
12538
|
{
|
|
12603
12539
|
"kind": "Content",
|
|
12604
12540
|
"text": ">>;\n \"core::AvatarModifierArea\": "
|
|
@@ -13771,7 +13707,7 @@
|
|
|
13771
13707
|
"name": "componentDefinitionByName",
|
|
13772
13708
|
"variableTypeTokenRange": {
|
|
13773
13709
|
"startIndex": 1,
|
|
13774
|
-
"endIndex":
|
|
13710
|
+
"endIndex": 308
|
|
13775
13711
|
}
|
|
13776
13712
|
},
|
|
13777
13713
|
{
|
|
@@ -23111,27 +23047,6 @@
|
|
|
23111
23047
|
"releaseTag": "Public",
|
|
23112
23048
|
"name": "IA_LEFT"
|
|
23113
23049
|
},
|
|
23114
|
-
{
|
|
23115
|
-
"kind": "EnumMember",
|
|
23116
|
-
"canonicalReference": "@dcl/playground-assets!InputAction.IA_MODIFIER:member",
|
|
23117
|
-
"docComment": "",
|
|
23118
|
-
"excerptTokens": [
|
|
23119
|
-
{
|
|
23120
|
-
"kind": "Content",
|
|
23121
|
-
"text": "IA_MODIFIER = "
|
|
23122
|
-
},
|
|
23123
|
-
{
|
|
23124
|
-
"kind": "Content",
|
|
23125
|
-
"text": "14"
|
|
23126
|
-
}
|
|
23127
|
-
],
|
|
23128
|
-
"initializerTokenRange": {
|
|
23129
|
-
"startIndex": 1,
|
|
23130
|
-
"endIndex": 2
|
|
23131
|
-
},
|
|
23132
|
-
"releaseTag": "Public",
|
|
23133
|
-
"name": "IA_MODIFIER"
|
|
23134
|
-
},
|
|
23135
23050
|
{
|
|
23136
23051
|
"kind": "EnumMember",
|
|
23137
23052
|
"canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
|
|
@@ -39677,337 +39592,6 @@
|
|
|
39677
39592
|
}
|
|
39678
39593
|
]
|
|
39679
39594
|
},
|
|
39680
|
-
{
|
|
39681
|
-
"kind": "Interface",
|
|
39682
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
|
|
39683
|
-
"docComment": "/**\n * @public\n */\n",
|
|
39684
|
-
"excerptTokens": [
|
|
39685
|
-
{
|
|
39686
|
-
"kind": "Content",
|
|
39687
|
-
"text": "export interface PBAvatarLocomotionSettings "
|
|
39688
|
-
}
|
|
39689
|
-
],
|
|
39690
|
-
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
|
|
39691
|
-
"releaseTag": "Public",
|
|
39692
|
-
"name": "PBAvatarLocomotionSettings",
|
|
39693
|
-
"preserveMemberOrder": false,
|
|
39694
|
-
"members": [
|
|
39695
|
-
{
|
|
39696
|
-
"kind": "PropertySignature",
|
|
39697
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#hardLandingCooldown:member",
|
|
39698
|
-
"docComment": "/**\n * Cooldown time after a hard landing before the avatar can move again (in seconds)\n */\n",
|
|
39699
|
-
"excerptTokens": [
|
|
39700
|
-
{
|
|
39701
|
-
"kind": "Content",
|
|
39702
|
-
"text": "hardLandingCooldown?: "
|
|
39703
|
-
},
|
|
39704
|
-
{
|
|
39705
|
-
"kind": "Content",
|
|
39706
|
-
"text": "number | undefined"
|
|
39707
|
-
},
|
|
39708
|
-
{
|
|
39709
|
-
"kind": "Content",
|
|
39710
|
-
"text": ";"
|
|
39711
|
-
}
|
|
39712
|
-
],
|
|
39713
|
-
"isReadonly": false,
|
|
39714
|
-
"isOptional": true,
|
|
39715
|
-
"releaseTag": "Public",
|
|
39716
|
-
"name": "hardLandingCooldown",
|
|
39717
|
-
"propertyTypeTokenRange": {
|
|
39718
|
-
"startIndex": 1,
|
|
39719
|
-
"endIndex": 2
|
|
39720
|
-
}
|
|
39721
|
-
},
|
|
39722
|
-
{
|
|
39723
|
-
"kind": "PropertySignature",
|
|
39724
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
|
|
39725
|
-
"docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
|
|
39726
|
-
"excerptTokens": [
|
|
39727
|
-
{
|
|
39728
|
-
"kind": "Content",
|
|
39729
|
-
"text": "jogSpeed?: "
|
|
39730
|
-
},
|
|
39731
|
-
{
|
|
39732
|
-
"kind": "Content",
|
|
39733
|
-
"text": "number | undefined"
|
|
39734
|
-
},
|
|
39735
|
-
{
|
|
39736
|
-
"kind": "Content",
|
|
39737
|
-
"text": ";"
|
|
39738
|
-
}
|
|
39739
|
-
],
|
|
39740
|
-
"isReadonly": false,
|
|
39741
|
-
"isOptional": true,
|
|
39742
|
-
"releaseTag": "Public",
|
|
39743
|
-
"name": "jogSpeed",
|
|
39744
|
-
"propertyTypeTokenRange": {
|
|
39745
|
-
"startIndex": 1,
|
|
39746
|
-
"endIndex": 2
|
|
39747
|
-
}
|
|
39748
|
-
},
|
|
39749
|
-
{
|
|
39750
|
-
"kind": "PropertySignature",
|
|
39751
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
|
|
39752
|
-
"docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
|
|
39753
|
-
"excerptTokens": [
|
|
39754
|
-
{
|
|
39755
|
-
"kind": "Content",
|
|
39756
|
-
"text": "jumpHeight?: "
|
|
39757
|
-
},
|
|
39758
|
-
{
|
|
39759
|
-
"kind": "Content",
|
|
39760
|
-
"text": "number | undefined"
|
|
39761
|
-
},
|
|
39762
|
-
{
|
|
39763
|
-
"kind": "Content",
|
|
39764
|
-
"text": ";"
|
|
39765
|
-
}
|
|
39766
|
-
],
|
|
39767
|
-
"isReadonly": false,
|
|
39768
|
-
"isOptional": true,
|
|
39769
|
-
"releaseTag": "Public",
|
|
39770
|
-
"name": "jumpHeight",
|
|
39771
|
-
"propertyTypeTokenRange": {
|
|
39772
|
-
"startIndex": 1,
|
|
39773
|
-
"endIndex": 2
|
|
39774
|
-
}
|
|
39775
|
-
},
|
|
39776
|
-
{
|
|
39777
|
-
"kind": "PropertySignature",
|
|
39778
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
|
|
39779
|
-
"docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
|
|
39780
|
-
"excerptTokens": [
|
|
39781
|
-
{
|
|
39782
|
-
"kind": "Content",
|
|
39783
|
-
"text": "runJumpHeight?: "
|
|
39784
|
-
},
|
|
39785
|
-
{
|
|
39786
|
-
"kind": "Content",
|
|
39787
|
-
"text": "number | undefined"
|
|
39788
|
-
},
|
|
39789
|
-
{
|
|
39790
|
-
"kind": "Content",
|
|
39791
|
-
"text": ";"
|
|
39792
|
-
}
|
|
39793
|
-
],
|
|
39794
|
-
"isReadonly": false,
|
|
39795
|
-
"isOptional": true,
|
|
39796
|
-
"releaseTag": "Public",
|
|
39797
|
-
"name": "runJumpHeight",
|
|
39798
|
-
"propertyTypeTokenRange": {
|
|
39799
|
-
"startIndex": 1,
|
|
39800
|
-
"endIndex": 2
|
|
39801
|
-
}
|
|
39802
|
-
},
|
|
39803
|
-
{
|
|
39804
|
-
"kind": "PropertySignature",
|
|
39805
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
|
|
39806
|
-
"docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
|
|
39807
|
-
"excerptTokens": [
|
|
39808
|
-
{
|
|
39809
|
-
"kind": "Content",
|
|
39810
|
-
"text": "runSpeed?: "
|
|
39811
|
-
},
|
|
39812
|
-
{
|
|
39813
|
-
"kind": "Content",
|
|
39814
|
-
"text": "number | undefined"
|
|
39815
|
-
},
|
|
39816
|
-
{
|
|
39817
|
-
"kind": "Content",
|
|
39818
|
-
"text": ";"
|
|
39819
|
-
}
|
|
39820
|
-
],
|
|
39821
|
-
"isReadonly": false,
|
|
39822
|
-
"isOptional": true,
|
|
39823
|
-
"releaseTag": "Public",
|
|
39824
|
-
"name": "runSpeed",
|
|
39825
|
-
"propertyTypeTokenRange": {
|
|
39826
|
-
"startIndex": 1,
|
|
39827
|
-
"endIndex": 2
|
|
39828
|
-
}
|
|
39829
|
-
},
|
|
39830
|
-
{
|
|
39831
|
-
"kind": "PropertySignature",
|
|
39832
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
|
|
39833
|
-
"docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
|
|
39834
|
-
"excerptTokens": [
|
|
39835
|
-
{
|
|
39836
|
-
"kind": "Content",
|
|
39837
|
-
"text": "walkSpeed?: "
|
|
39838
|
-
},
|
|
39839
|
-
{
|
|
39840
|
-
"kind": "Content",
|
|
39841
|
-
"text": "number | undefined"
|
|
39842
|
-
},
|
|
39843
|
-
{
|
|
39844
|
-
"kind": "Content",
|
|
39845
|
-
"text": ";"
|
|
39846
|
-
}
|
|
39847
|
-
],
|
|
39848
|
-
"isReadonly": false,
|
|
39849
|
-
"isOptional": true,
|
|
39850
|
-
"releaseTag": "Public",
|
|
39851
|
-
"name": "walkSpeed",
|
|
39852
|
-
"propertyTypeTokenRange": {
|
|
39853
|
-
"startIndex": 1,
|
|
39854
|
-
"endIndex": 2
|
|
39855
|
-
}
|
|
39856
|
-
}
|
|
39857
|
-
],
|
|
39858
|
-
"extendsTokenRanges": []
|
|
39859
|
-
},
|
|
39860
|
-
{
|
|
39861
|
-
"kind": "Namespace",
|
|
39862
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
|
|
39863
|
-
"docComment": "/**\n * @public\n */\n",
|
|
39864
|
-
"excerptTokens": [
|
|
39865
|
-
{
|
|
39866
|
-
"kind": "Content",
|
|
39867
|
-
"text": "export declare namespace PBAvatarLocomotionSettings "
|
|
39868
|
-
}
|
|
39869
|
-
],
|
|
39870
|
-
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
|
|
39871
|
-
"releaseTag": "Public",
|
|
39872
|
-
"name": "PBAvatarLocomotionSettings",
|
|
39873
|
-
"preserveMemberOrder": false,
|
|
39874
|
-
"members": [
|
|
39875
|
-
{
|
|
39876
|
-
"kind": "Function",
|
|
39877
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
|
|
39878
|
-
"docComment": "",
|
|
39879
|
-
"excerptTokens": [
|
|
39880
|
-
{
|
|
39881
|
-
"kind": "Content",
|
|
39882
|
-
"text": "function decode(input: "
|
|
39883
|
-
},
|
|
39884
|
-
{
|
|
39885
|
-
"kind": "Reference",
|
|
39886
|
-
"text": "_m0.Reader",
|
|
39887
|
-
"canonicalReference": "protobufjs!Reader:class"
|
|
39888
|
-
},
|
|
39889
|
-
{
|
|
39890
|
-
"kind": "Content",
|
|
39891
|
-
"text": " | "
|
|
39892
|
-
},
|
|
39893
|
-
{
|
|
39894
|
-
"kind": "Reference",
|
|
39895
|
-
"text": "Uint8Array",
|
|
39896
|
-
"canonicalReference": "!Uint8Array:interface"
|
|
39897
|
-
},
|
|
39898
|
-
{
|
|
39899
|
-
"kind": "Content",
|
|
39900
|
-
"text": ", length?: "
|
|
39901
|
-
},
|
|
39902
|
-
{
|
|
39903
|
-
"kind": "Content",
|
|
39904
|
-
"text": "number"
|
|
39905
|
-
},
|
|
39906
|
-
{
|
|
39907
|
-
"kind": "Content",
|
|
39908
|
-
"text": "): "
|
|
39909
|
-
},
|
|
39910
|
-
{
|
|
39911
|
-
"kind": "Reference",
|
|
39912
|
-
"text": "PBAvatarLocomotionSettings",
|
|
39913
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
|
|
39914
|
-
},
|
|
39915
|
-
{
|
|
39916
|
-
"kind": "Content",
|
|
39917
|
-
"text": ";"
|
|
39918
|
-
}
|
|
39919
|
-
],
|
|
39920
|
-
"returnTypeTokenRange": {
|
|
39921
|
-
"startIndex": 7,
|
|
39922
|
-
"endIndex": 8
|
|
39923
|
-
},
|
|
39924
|
-
"releaseTag": "Public",
|
|
39925
|
-
"overloadIndex": 1,
|
|
39926
|
-
"parameters": [
|
|
39927
|
-
{
|
|
39928
|
-
"parameterName": "input",
|
|
39929
|
-
"parameterTypeTokenRange": {
|
|
39930
|
-
"startIndex": 1,
|
|
39931
|
-
"endIndex": 4
|
|
39932
|
-
},
|
|
39933
|
-
"isOptional": false
|
|
39934
|
-
},
|
|
39935
|
-
{
|
|
39936
|
-
"parameterName": "length",
|
|
39937
|
-
"parameterTypeTokenRange": {
|
|
39938
|
-
"startIndex": 5,
|
|
39939
|
-
"endIndex": 6
|
|
39940
|
-
},
|
|
39941
|
-
"isOptional": true
|
|
39942
|
-
}
|
|
39943
|
-
],
|
|
39944
|
-
"name": "decode"
|
|
39945
|
-
},
|
|
39946
|
-
{
|
|
39947
|
-
"kind": "Function",
|
|
39948
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
|
|
39949
|
-
"docComment": "",
|
|
39950
|
-
"excerptTokens": [
|
|
39951
|
-
{
|
|
39952
|
-
"kind": "Content",
|
|
39953
|
-
"text": "function encode(message: "
|
|
39954
|
-
},
|
|
39955
|
-
{
|
|
39956
|
-
"kind": "Reference",
|
|
39957
|
-
"text": "PBAvatarLocomotionSettings",
|
|
39958
|
-
"canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
|
|
39959
|
-
},
|
|
39960
|
-
{
|
|
39961
|
-
"kind": "Content",
|
|
39962
|
-
"text": ", writer?: "
|
|
39963
|
-
},
|
|
39964
|
-
{
|
|
39965
|
-
"kind": "Reference",
|
|
39966
|
-
"text": "_m0.Writer",
|
|
39967
|
-
"canonicalReference": "protobufjs!Writer:class"
|
|
39968
|
-
},
|
|
39969
|
-
{
|
|
39970
|
-
"kind": "Content",
|
|
39971
|
-
"text": "): "
|
|
39972
|
-
},
|
|
39973
|
-
{
|
|
39974
|
-
"kind": "Reference",
|
|
39975
|
-
"text": "_m0.Writer",
|
|
39976
|
-
"canonicalReference": "protobufjs!Writer:class"
|
|
39977
|
-
},
|
|
39978
|
-
{
|
|
39979
|
-
"kind": "Content",
|
|
39980
|
-
"text": ";"
|
|
39981
|
-
}
|
|
39982
|
-
],
|
|
39983
|
-
"returnTypeTokenRange": {
|
|
39984
|
-
"startIndex": 5,
|
|
39985
|
-
"endIndex": 6
|
|
39986
|
-
},
|
|
39987
|
-
"releaseTag": "Public",
|
|
39988
|
-
"overloadIndex": 1,
|
|
39989
|
-
"parameters": [
|
|
39990
|
-
{
|
|
39991
|
-
"parameterName": "message",
|
|
39992
|
-
"parameterTypeTokenRange": {
|
|
39993
|
-
"startIndex": 1,
|
|
39994
|
-
"endIndex": 2
|
|
39995
|
-
},
|
|
39996
|
-
"isOptional": false
|
|
39997
|
-
},
|
|
39998
|
-
{
|
|
39999
|
-
"parameterName": "writer",
|
|
40000
|
-
"parameterTypeTokenRange": {
|
|
40001
|
-
"startIndex": 3,
|
|
40002
|
-
"endIndex": 4
|
|
40003
|
-
},
|
|
40004
|
-
"isOptional": true
|
|
40005
|
-
}
|
|
40006
|
-
],
|
|
40007
|
-
"name": "encode"
|
|
40008
|
-
}
|
|
40009
|
-
]
|
|
40010
|
-
},
|
|
40011
39595
|
{
|
|
40012
39596
|
"kind": "Interface",
|
|
40013
39597
|
"canonicalReference": "@dcl/playground-assets!PBAvatarModifierArea:interface",
|
|
@@ -59809,33 +59393,6 @@
|
|
|
59809
59393
|
"endIndex": 3
|
|
59810
59394
|
}
|
|
59811
59395
|
},
|
|
59812
|
-
{
|
|
59813
|
-
"kind": "PropertySignature",
|
|
59814
|
-
"canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
|
|
59815
|
-
"docComment": "/**\n * default: 60\n */\n",
|
|
59816
|
-
"excerptTokens": [
|
|
59817
|
-
{
|
|
59818
|
-
"kind": "Content",
|
|
59819
|
-
"text": "fov?: "
|
|
59820
|
-
},
|
|
59821
|
-
{
|
|
59822
|
-
"kind": "Content",
|
|
59823
|
-
"text": "number | undefined"
|
|
59824
|
-
},
|
|
59825
|
-
{
|
|
59826
|
-
"kind": "Content",
|
|
59827
|
-
"text": ";"
|
|
59828
|
-
}
|
|
59829
|
-
],
|
|
59830
|
-
"isReadonly": false,
|
|
59831
|
-
"isOptional": true,
|
|
59832
|
-
"releaseTag": "Public",
|
|
59833
|
-
"name": "fov",
|
|
59834
|
-
"propertyTypeTokenRange": {
|
|
59835
|
-
"startIndex": 1,
|
|
59836
|
-
"endIndex": 2
|
|
59837
|
-
}
|
|
59838
|
-
},
|
|
59839
59396
|
{
|
|
59840
59397
|
"kind": "PropertySignature",
|
|
59841
59398
|
"canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
|
|
@@ -142,9 +142,6 @@ 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
|
-
|
|
148
145
|
// @public (undocumented)
|
|
149
146
|
export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
150
147
|
|
|
@@ -632,7 +629,6 @@ export const componentDefinitionByName: {
|
|
|
632
629
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
633
630
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
634
631
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
635
|
-
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
636
632
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
637
633
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
638
634
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -1441,8 +1437,6 @@ export const enum InputAction {
|
|
|
1441
1437
|
// (undocumented)
|
|
1442
1438
|
IA_LEFT = 7,
|
|
1443
1439
|
// (undocumented)
|
|
1444
|
-
IA_MODIFIER = 14,
|
|
1445
|
-
// (undocumented)
|
|
1446
1440
|
IA_POINTER = 0,
|
|
1447
1441
|
// (undocumented)
|
|
1448
1442
|
IA_PRIMARY = 1,
|
|
@@ -2271,24 +2265,6 @@ export namespace PBAvatarEquippedData {
|
|
|
2271
2265
|
export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
|
|
2272
2266
|
}
|
|
2273
2267
|
|
|
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
|
-
|
|
2292
2268
|
// @public (undocumented)
|
|
2293
2269
|
export interface PBAvatarModifierArea {
|
|
2294
2270
|
area: PBVector3 | undefined;
|
|
@@ -3530,7 +3506,6 @@ export namespace PBVideoPlayer {
|
|
|
3530
3506
|
export interface PBVirtualCamera {
|
|
3531
3507
|
// (undocumented)
|
|
3532
3508
|
defaultTransition?: CameraTransition | undefined;
|
|
3533
|
-
fov?: number | undefined;
|
|
3534
3509
|
// (undocumented)
|
|
3535
3510
|
lookAtEntity?: number | undefined;
|
|
3536
3511
|
}
|
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-19707837499.commit-31fb204",
|
|
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-19707837499.commit-31fb204",
|
|
8
|
+
"@dcl/sdk": "7.14.1-19707837499.commit-31fb204"
|
|
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": "31fb204a4192d11aa8a4e32669114883d7ce9732"
|
|
36
36
|
}
|