1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

fixes android double tap regression

This commit is contained in:
Alexander Holland
2020-01-13 12:46:33 +01:00
parent 33be750634
commit dd2fd4e853
4 changed files with 4 additions and 4 deletions

View File

@@ -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.

View File

@@ -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;