babylonjs-gui 7.21.0 → 7.21.2

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/babylon.gui.d.ts CHANGED
@@ -3950,6 +3950,10 @@ declare module BABYLON.GUI {
3950
3950
  * Defaults to false.
3951
3951
  */
3952
3952
  disableTabNavigation: boolean;
3953
+ /**
3954
+ * If set to true, the POINTERTAP event type will be used for "click", instead of POINTERUP
3955
+ */
3956
+ usePointerTapForClickEvent: boolean;
3953
3957
  /**
3954
3958
  * Gets or sets a number used to scale rendering size (2 means that the texture will be twice bigger).
3955
3959
  * Useful when you want more antialiasing
@@ -6994,6 +6998,7 @@ declare module BABYLON.GUI {
6994
6998
  * @internal
6995
6999
  */
6996
7000
  _onPointerUp(target: Control, coordinates: BABYLON.Vector2, pointerId: number, buttonIndex: number, notifyClick: boolean, pi?: BABYLON.Nullable<BABYLON.PointerInfoBase>): void;
7001
+ _onPointerPick(target: Control, coordinates: BABYLON.Vector2, pointerId: number, buttonIndex: number, notifyClick: boolean, pi: BABYLON.Nullable<BABYLON.PointerInfoBase>): boolean;
6997
7002
  /**
6998
7003
  * @internal
6999
7004
  */