@dcl/playground-assets 7.5.7-10322847908.commit-b049f13 → 7.5.7-10726978287.commit-bc3c487
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 +2 -2
- 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
@@ -598,6 +598,7 @@ export const componentDefinitionByName: {
|
|
598
598
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
599
599
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
600
600
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
601
|
+
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
601
602
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
602
603
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
603
604
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
@@ -1384,6 +1385,9 @@ export const enum InputAction {
|
|
1384
1385
|
IA_WALK = 9
|
1385
1386
|
}
|
1386
1387
|
|
1388
|
+
// @public (undocumented)
|
1389
|
+
export const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
|
1390
|
+
|
1387
1391
|
// @public
|
1388
1392
|
export const inputSystem: IInputSystem;
|
1389
1393
|
|
@@ -2303,6 +2307,47 @@ export namespace PBGltfContainerLoadingState {
|
|
2303
2307
|
export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
|
2304
2308
|
}
|
2305
2309
|
|
2310
|
+
// @public (undocumented)
|
2311
|
+
export interface PBInputModifier {
|
2312
|
+
// (undocumented)
|
2313
|
+
mode?: {
|
2314
|
+
$case: "standard";
|
2315
|
+
standard: PBInputModifier_StandardInput;
|
2316
|
+
} | undefined;
|
2317
|
+
}
|
2318
|
+
|
2319
|
+
// @public (undocumented)
|
2320
|
+
export namespace PBInputModifier {
|
2321
|
+
// (undocumented)
|
2322
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier;
|
2323
|
+
// (undocumented)
|
2324
|
+
export function encode(message: PBInputModifier, writer?: _m0.Writer): _m0.Writer;
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
// @public (undocumented)
|
2328
|
+
export interface PBInputModifier_StandardInput {
|
2329
|
+
// (undocumented)
|
2330
|
+
disableAll?: boolean | undefined;
|
2331
|
+
// (undocumented)
|
2332
|
+
disableEmote?: boolean | undefined;
|
2333
|
+
// (undocumented)
|
2334
|
+
disableJog?: boolean | undefined;
|
2335
|
+
// (undocumented)
|
2336
|
+
disableJump?: boolean | undefined;
|
2337
|
+
// (undocumented)
|
2338
|
+
disableRun?: boolean | undefined;
|
2339
|
+
// (undocumented)
|
2340
|
+
disableWalk?: boolean | undefined;
|
2341
|
+
}
|
2342
|
+
|
2343
|
+
// @public (undocumented)
|
2344
|
+
export namespace PBInputModifier_StandardInput {
|
2345
|
+
// (undocumented)
|
2346
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
|
2347
|
+
// (undocumented)
|
2348
|
+
export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
|
2349
|
+
}
|
2350
|
+
|
2306
2351
|
// @public (undocumented)
|
2307
2352
|
export interface PBMaterial {
|
2308
2353
|
// (undocumented)
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.5.7-
|
4
|
+
"version": "7.5.7-10726978287.commit-bc3c487",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.5.7-
|
8
|
-
"@dcl/sdk": "7.5.7-
|
7
|
+
"@dcl/js-runtime": "7.5.7-10726978287.commit-bc3c487",
|
8
|
+
"@dcl/sdk": "7.5.7-10726978287.commit-bc3c487"
|
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": "bc3c487938573c47cc154a97be8b1742628c0d69"
|
36
36
|
}
|