@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 CHANGED
@@ -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
  */
package/dist/beta.d.ts CHANGED
@@ -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>>;
@@ -2399,6 +2400,9 @@ export declare const enum InputAction {
2399
2400
  IA_ACTION_6 = 13
2400
2401
  }
2401
2402
 
2403
+ /** @public */
2404
+ export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
2405
+
2402
2406
  /**
2403
2407
  * @public
2404
2408
  * Input system manager. Check for button events
@@ -4383,6 +4387,45 @@ export declare namespace PBGltfContainerLoadingState {
4383
4387
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
4384
4388
  }
4385
4389
 
4390
+ /**
4391
+ * @public
4392
+ */
4393
+ export declare interface PBInputModifier {
4394
+ mode?: {
4395
+ $case: "standard";
4396
+ standard: PBInputModifier_StandardInput;
4397
+ } | undefined;
4398
+ }
4399
+
4400
+ /**
4401
+ * @public
4402
+ */
4403
+ export declare namespace PBInputModifier {
4404
+ export function encode(message: PBInputModifier, writer?: _m0.Writer): _m0.Writer;
4405
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier;
4406
+ }
4407
+
4408
+ /** when a boolean = false (default) the message is ignored and doesn't consume bandwidth */
4409
+ /**
4410
+ * @public
4411
+ */
4412
+ export declare interface PBInputModifier_StandardInput {
4413
+ disableAll?: boolean | undefined;
4414
+ disableWalk?: boolean | undefined;
4415
+ disableJog?: boolean | undefined;
4416
+ disableRun?: boolean | undefined;
4417
+ disableJump?: boolean | undefined;
4418
+ disableEmote?: boolean | undefined;
4419
+ }
4420
+
4421
+ /**
4422
+ * @public
4423
+ */
4424
+ export declare namespace PBInputModifier_StandardInput {
4425
+ export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
4426
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
4427
+ }
4428
+
4386
4429
  /**
4387
4430
  * @public
4388
4431
  */
@@ -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>>;
@@ -2399,6 +2400,9 @@ export declare const enum InputAction {
2399
2400
  IA_ACTION_6 = 13
2400
2401
  }
2401
2402
 
2403
+ /** @public */
2404
+ export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
2405
+
2402
2406
  /**
2403
2407
  * @public
2404
2408
  * Input system manager. Check for button events
@@ -4383,6 +4387,45 @@ export declare namespace PBGltfContainerLoadingState {
4383
4387
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
4384
4388
  }
4385
4389
 
4390
+ /**
4391
+ * @public
4392
+ */
4393
+ export declare interface PBInputModifier {
4394
+ mode?: {
4395
+ $case: "standard";
4396
+ standard: PBInputModifier_StandardInput;
4397
+ } | undefined;
4398
+ }
4399
+
4400
+ /**
4401
+ * @public
4402
+ */
4403
+ export declare namespace PBInputModifier {
4404
+ export function encode(message: PBInputModifier, writer?: _m0.Writer): _m0.Writer;
4405
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier;
4406
+ }
4407
+
4408
+ /** when a boolean = false (default) the message is ignored and doesn't consume bandwidth */
4409
+ /**
4410
+ * @public
4411
+ */
4412
+ export declare interface PBInputModifier_StandardInput {
4413
+ disableAll?: boolean | undefined;
4414
+ disableWalk?: boolean | undefined;
4415
+ disableJog?: boolean | undefined;
4416
+ disableRun?: boolean | undefined;
4417
+ disableJump?: boolean | undefined;
4418
+ disableEmote?: boolean | undefined;
4419
+ }
4420
+
4421
+ /**
4422
+ * @public
4423
+ */
4424
+ export declare namespace PBInputModifier_StandardInput {
4425
+ export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
4426
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBInputModifier_StandardInput;
4427
+ }
4428
+
4386
4429
  /**
4387
4430
  * @public
4388
4431
  */