@dcl/playground-assets 7.5.7-9960158359.commit-c851663 → 7.5.8-10743784489.commit-d6809c5
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 +43 -0
- package/dist/beta.d.ts +43 -0
- package/dist/index.bundled.d.ts +43 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +3 -3
- package/dist/playground-assets.d.ts +43 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/etc/playground-assets.api.json +602 -2
- package/etc/playground-assets.api.md +45 -0
- package/package.json +4 -4
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.5.
|
4
|
+
"version": "7.5.8-10743784489.commit-d6809c5",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
7
|
"@dcl/ecs": "file:../ecs",
|
8
8
|
"@dcl/ecs-math": "2.0.2",
|
9
|
-
"@dcl/explorer": "1.0.
|
9
|
+
"@dcl/explorer": "1.0.164509-20240802172549.commit-fb95b9b",
|
10
10
|
"@dcl/js-runtime": "file:../js-runtime",
|
11
11
|
"@dcl/react-ecs": "file:../react-ecs",
|
12
12
|
"@dcl/sdk-commands": "file:../sdk-commands",
|
@@ -35,5 +35,5 @@
|
|
35
35
|
},
|
36
36
|
"types": "./index.d.ts",
|
37
37
|
"typings": "./index.d.ts",
|
38
|
-
"commit": "
|
38
|
+
"commit": "d6809c5ab31d86edcdcca7d41cb2e06bd46921aa"
|
39
39
|
}
|
@@ -1258,6 +1258,7 @@ export declare const componentDefinitionByName: {
|
|
1258
1258
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
1259
1259
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
1260
1260
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
1261
|
+
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
1261
1262
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
1262
1263
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
1263
1264
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
@@ -2408,6 +2409,9 @@ export declare const enum InputAction {
|
|
2408
2409
|
IA_ACTION_6 = 13
|
2409
2410
|
}
|
2410
2411
|
|
2412
|
+
/** @public */
|
2413
|
+
export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
|
2414
|
+
|
2411
2415
|
/**
|
2412
2416
|
* @public
|
2413
2417
|
* Input system manager. Check for button events
|
@@ -4411,6 +4415,45 @@ export declare namespace PBGltfContainerLoadingState {
|
|
4411
4415
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
|
4412
4416
|
}
|
4413
4417
|
|
4418
|
+
/**
|
4419
|
+
* @public
|
4420
|
+
*/
|
4421
|
+
export declare interface PBInputModifier {
|
4422
|
+
mode?: {
|
4423
|
+
$case: "standard";
|
4424
|
+
standard: PBInputModifier_StandardInput;
|
4425
|
+
} | undefined;
|
4426
|
+
}
|
4427
|
+
|
4428
|
+
/**
|
4429
|
+
* @public
|
4430
|
+
*/
|
4431
|
+
export declare namespace PBInputModifier {
|
4432
|
+
export function encode(message: PBInputModifier, writer?: _m0.Writer): _m0.Writer;
|
4433
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier;
|
4434
|
+
}
|
4435
|
+
|
4436
|
+
/** when a boolean = false (default) the message is ignored and doesn't consume bandwidth */
|
4437
|
+
/**
|
4438
|
+
* @public
|
4439
|
+
*/
|
4440
|
+
export declare interface PBInputModifier_StandardInput {
|
4441
|
+
disableAll?: boolean | undefined;
|
4442
|
+
disableWalk?: boolean | undefined;
|
4443
|
+
disableJog?: boolean | undefined;
|
4444
|
+
disableRun?: boolean | undefined;
|
4445
|
+
disableJump?: boolean | undefined;
|
4446
|
+
disableEmote?: boolean | undefined;
|
4447
|
+
}
|
4448
|
+
|
4449
|
+
/**
|
4450
|
+
* @public
|
4451
|
+
*/
|
4452
|
+
export declare namespace PBInputModifier_StandardInput {
|
4453
|
+
export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
|
4454
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
|
4455
|
+
}
|
4456
|
+
|
4414
4457
|
/**
|
4415
4458
|
* @public
|
4416
4459
|
*/
|