babylonjs-gui 7.20.1 → 7.21.1
Sign up to get free protection for your applications and to get access to all the features.
- package/babylon.gui.d.ts +5 -0
- package/babylon.gui.js +41 -8
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +10 -0
- package/package.json +2 -2
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
|
*/
|