@dcl/playground-assets 7.14.1-19707837499.commit-31fb204 → 7.14.1-19936146810.commit-178bdd0
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 +39 -1
- package/dist/beta.d.ts +39 -1
- package/dist/index.bundled.d.ts +39 -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 +39 -1
- package/etc/playground-assets.api.json +444 -1
- package/etc/playground-assets.api.md +25 -0
- 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-19936146810.commit-178bdd0",
|
|
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": "178bdd0fe97216238181b6e140c12f72dfd85191"
|
|
39
39
|
}
|
|
@@ -184,6 +184,9 @@ 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
|
+
|
|
187
190
|
/** @public */
|
|
188
191
|
export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
189
192
|
|
|
@@ -1301,6 +1304,7 @@ export declare const componentDefinitionByName: {
|
|
|
1301
1304
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
1302
1305
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
1303
1306
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
1307
|
+
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
1304
1308
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
1305
1309
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
1306
1310
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -2492,7 +2496,8 @@ export declare const enum InputAction {
|
|
|
2492
2496
|
IA_ACTION_3 = 10,
|
|
2493
2497
|
IA_ACTION_4 = 11,
|
|
2494
2498
|
IA_ACTION_5 = 12,
|
|
2495
|
-
IA_ACTION_6 = 13
|
|
2499
|
+
IA_ACTION_6 = 13,
|
|
2500
|
+
IA_MODIFIER = 14
|
|
2496
2501
|
}
|
|
2497
2502
|
|
|
2498
2503
|
export declare const InputModifier: InputModifierComponentDefinitionExtended;
|
|
@@ -4308,6 +4313,36 @@ export declare namespace PBAvatarEquippedData {
|
|
|
4308
4313
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
|
|
4309
4314
|
}
|
|
4310
4315
|
|
|
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
|
+
|
|
4311
4346
|
/**
|
|
4312
4347
|
* The AvatarModifierArea component can be attached to an Entity to define a region of space where
|
|
4313
4348
|
* avatar behavior changes.
|
|
@@ -6034,6 +6069,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6034
6069
|
* an 'instant' transition (like using speed/time = 0)
|
|
6035
6070
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6036
6071
|
* the holding entity transform).
|
|
6072
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6037
6073
|
*/
|
|
6038
6074
|
/**
|
|
6039
6075
|
* @public
|
|
@@ -6041,6 +6077,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6041
6077
|
export declare interface PBVirtualCamera {
|
|
6042
6078
|
defaultTransition?: CameraTransition | undefined;
|
|
6043
6079
|
lookAtEntity?: number | undefined;
|
|
6080
|
+
/** default: 60 */
|
|
6081
|
+
fov?: number | undefined;
|
|
6044
6082
|
}
|
|
6045
6083
|
|
|
6046
6084
|
/**
|
|
@@ -1973,6 +1973,43 @@
|
|
|
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
|
+
},
|
|
1976
2013
|
{
|
|
1977
2014
|
"kind": "Variable",
|
|
1978
2015
|
"canonicalReference": "@dcl/playground-assets!AvatarModifierArea:var",
|
|
@@ -12535,6 +12572,33 @@
|
|
|
12535
12572
|
"text": "PBAvatarEquippedData",
|
|
12536
12573
|
"canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData"
|
|
12537
12574
|
},
|
|
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
|
+
},
|
|
12538
12602
|
{
|
|
12539
12603
|
"kind": "Content",
|
|
12540
12604
|
"text": ">>;\n \"core::AvatarModifierArea\": "
|
|
@@ -13707,7 +13771,7 @@
|
|
|
13707
13771
|
"name": "componentDefinitionByName",
|
|
13708
13772
|
"variableTypeTokenRange": {
|
|
13709
13773
|
"startIndex": 1,
|
|
13710
|
-
"endIndex":
|
|
13774
|
+
"endIndex": 314
|
|
13711
13775
|
}
|
|
13712
13776
|
},
|
|
13713
13777
|
{
|
|
@@ -23047,6 +23111,27 @@
|
|
|
23047
23111
|
"releaseTag": "Public",
|
|
23048
23112
|
"name": "IA_LEFT"
|
|
23049
23113
|
},
|
|
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
|
+
},
|
|
23050
23135
|
{
|
|
23051
23136
|
"kind": "EnumMember",
|
|
23052
23137
|
"canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
|
|
@@ -39592,6 +39677,337 @@
|
|
|
39592
39677
|
}
|
|
39593
39678
|
]
|
|
39594
39679
|
},
|
|
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
|
+
},
|
|
39595
40011
|
{
|
|
39596
40012
|
"kind": "Interface",
|
|
39597
40013
|
"canonicalReference": "@dcl/playground-assets!PBAvatarModifierArea:interface",
|
|
@@ -59393,6 +59809,33 @@
|
|
|
59393
59809
|
"endIndex": 3
|
|
59394
59810
|
}
|
|
59395
59811
|
},
|
|
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
|
+
},
|
|
59396
59839
|
{
|
|
59397
59840
|
"kind": "PropertySignature",
|
|
59398
59841
|
"canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
|
|
@@ -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,
|
|
@@ -2265,6 +2271,24 @@ export namespace PBAvatarEquippedData {
|
|
|
2265
2271
|
export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
|
|
2266
2272
|
}
|
|
2267
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
|
+
|
|
2268
2292
|
// @public (undocumented)
|
|
2269
2293
|
export interface PBAvatarModifierArea {
|
|
2270
2294
|
area: PBVector3 | undefined;
|
|
@@ -3506,6 +3530,7 @@ export namespace PBVideoPlayer {
|
|
|
3506
3530
|
export interface PBVirtualCamera {
|
|
3507
3531
|
// (undocumented)
|
|
3508
3532
|
defaultTransition?: CameraTransition | undefined;
|
|
3533
|
+
fov?: number | undefined;
|
|
3509
3534
|
// (undocumented)
|
|
3510
3535
|
lookAtEntity?: number | undefined;
|
|
3511
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-19936146810.commit-178bdd0",
|
|
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-19936146810.commit-178bdd0",
|
|
8
|
+
"@dcl/sdk": "7.14.1-19936146810.commit-178bdd0"
|
|
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": "178bdd0fe97216238181b6e140c12f72dfd85191"
|
|
36
36
|
}
|