@dcl/playground-assets 7.6.5-11861605587.commit-c13aef2 → 7.6.5-12009140772.commit-cf41aed

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
@@ -2453,8 +2453,27 @@ export declare const enum InputAction {
2453
2453
  IA_ACTION_6 = 13
2454
2454
  }
2455
2455
 
2456
- /** @public */
2457
- export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
2456
+ export declare const InputModifier: InputModifierComponentDefinitionExtended;
2457
+
2458
+ /**
2459
+ * @public
2460
+ */
2461
+ export declare interface InputModifierComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBInputModifier> {
2462
+ /**
2463
+ * InputModifier helper with constructor
2464
+ */
2465
+ Mode: InputModifierHelper;
2466
+ }
2467
+
2468
+ /**
2469
+ * @public
2470
+ */
2471
+ export declare interface InputModifierHelper {
2472
+ /**
2473
+ * @returns a input modifier mode
2474
+ */
2475
+ Standard: (standard: PBInputModifier_StandardInput) => PBInputModifier['mode'];
2476
+ }
2458
2477
 
2459
2478
  /**
2460
2479
  * @public
@@ -6956,6 +6975,13 @@ export declare interface Texture {
6956
6975
  wrapMode?: TextureWrapMode | undefined;
6957
6976
  /** default = FilterMode.Bilinear */
6958
6977
  filterMode?: TextureFilterMode | undefined;
6978
+ /**
6979
+ * Final uv = offset + (input_uv * tiling)
6980
+ * Offset for texture positioning.
6981
+ */
6982
+ offset?: PBVector2 | undefined;
6983
+ /** Tiling multiplier for texture repetition. */
6984
+ tiling?: PBVector2 | undefined;
6959
6985
  }
6960
6986
 
6961
6987
  /**
package/dist/beta.d.ts CHANGED
@@ -2444,8 +2444,27 @@ export declare const enum InputAction {
2444
2444
  IA_ACTION_6 = 13
2445
2445
  }
2446
2446
 
2447
- /** @public */
2448
- export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
2447
+ export declare const InputModifier: InputModifierComponentDefinitionExtended;
2448
+
2449
+ /**
2450
+ * @public
2451
+ */
2452
+ export declare interface InputModifierComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBInputModifier> {
2453
+ /**
2454
+ * InputModifier helper with constructor
2455
+ */
2456
+ Mode: InputModifierHelper;
2457
+ }
2458
+
2459
+ /**
2460
+ * @public
2461
+ */
2462
+ export declare interface InputModifierHelper {
2463
+ /**
2464
+ * @returns a input modifier mode
2465
+ */
2466
+ Standard: (standard: PBInputModifier_StandardInput) => PBInputModifier['mode'];
2467
+ }
2449
2468
 
2450
2469
  /**
2451
2470
  * @public
@@ -6923,6 +6942,13 @@ export declare interface Texture {
6923
6942
  wrapMode?: TextureWrapMode | undefined;
6924
6943
  /** default = FilterMode.Bilinear */
6925
6944
  filterMode?: TextureFilterMode | undefined;
6945
+ /**
6946
+ * Final uv = offset + (input_uv * tiling)
6947
+ * Offset for texture positioning.
6948
+ */
6949
+ offset?: PBVector2 | undefined;
6950
+ /** Tiling multiplier for texture repetition. */
6951
+ tiling?: PBVector2 | undefined;
6926
6952
  }
6927
6953
 
6928
6954
  /**
@@ -2444,8 +2444,27 @@ export declare const enum InputAction {
2444
2444
  IA_ACTION_6 = 13
2445
2445
  }
2446
2446
 
2447
- /** @public */
2448
- export declare const InputModifier: LastWriteWinElementSetComponentDefinition<PBInputModifier>;
2447
+ export declare const InputModifier: InputModifierComponentDefinitionExtended;
2448
+
2449
+ /**
2450
+ * @public
2451
+ */
2452
+ export declare interface InputModifierComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBInputModifier> {
2453
+ /**
2454
+ * InputModifier helper with constructor
2455
+ */
2456
+ Mode: InputModifierHelper;
2457
+ }
2458
+
2459
+ /**
2460
+ * @public
2461
+ */
2462
+ export declare interface InputModifierHelper {
2463
+ /**
2464
+ * @returns a input modifier mode
2465
+ */
2466
+ Standard: (standard: PBInputModifier_StandardInput) => PBInputModifier['mode'];
2467
+ }
2449
2468
 
2450
2469
  /**
2451
2470
  * @public
@@ -6923,6 +6942,13 @@ export declare interface Texture {
6923
6942
  wrapMode?: TextureWrapMode | undefined;
6924
6943
  /** default = FilterMode.Bilinear */
6925
6944
  filterMode?: TextureFilterMode | undefined;
6945
+ /**
6946
+ * Final uv = offset + (input_uv * tiling)
6947
+ * Offset for texture positioning.
6948
+ */
6949
+ offset?: PBVector2 | undefined;
6950
+ /** Tiling multiplier for texture repetition. */
6951
+ tiling?: PBVector2 | undefined;
6926
6952
  }
6927
6953
 
6928
6954
  /**