fixes android double tap regression
This commit is contained in:
parent
33be750634
commit
dd2fd4e853
4 changed files with 4 additions and 4 deletions
|
|
@ -102,7 +102,7 @@ public class GodotLib {
|
|||
/**
|
||||
* Forward double_tap events from the main thread to the GL thread.
|
||||
*/
|
||||
public static native void double_tap(int x, int y);
|
||||
public static native void doubletap(int x, int y);
|
||||
|
||||
/**
|
||||
* Forward scroll events from the main thread to the GL thread.
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ public class GodotGestureHandler extends GestureDetector.SimpleOnGestureListener
|
|||
queueEvent(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
GodotLib.double_tap(x, y);
|
||||
GodotLib.doubletap(x, y);
|
||||
}
|
||||
});
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue