Skip to content

Commit 3120b2c

Browse files
committed
android q tilt
1 parent 16a84f0 commit 3120b2c

File tree

1 file changed

+8
-26
lines changed

1 file changed

+8
-26
lines changed

platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java

+8-26
Original file line numberDiff line numberDiff line change
@@ -488,39 +488,21 @@ static boolean handleMouseEvent(final MotionEvent event) {
488488
float verticalFactor = event.getAxisValue(MotionEvent.AXIS_VSCROLL);
489489
float horizontalFactor = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
490490
float pressure = event.getPressure();
491-
float tiltX = 0f;
492-
float tiltY = 0f;
493-
494-
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.Q) {
495-
tiltX = event.getAxisValue(MotionEvent.AXIS_TILT_X);
496-
tiltY = event.getAxisValue(MotionEvent.AXIS_TILT_Y);
497-
}
498-
499-
boolean sourceMouseRelative = false;
500-
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
501-
sourceMouseRelative = event.isFromSource(InputDevice.SOURCE_MOUSE_RELATIVE);
502-
}
503-
504-
GodotLib.dispatchMouseEvent(eventAction, buttonsMask, x, y, deltaX, deltaY, pressure, tiltX, tiltY, doubleClick, sourceMouseRelative);
505-
506-
// Check if the event has tilt data
507-
if (Float.isNaN(tiltX) || Float.isNaN(tiltY)) {
508-
tiltX = 0f; // Default value if tilt data is not available
509-
tiltY = 0f; // Default value if tilt data is not available
510-
}
491+
float tiltX = 0;
492+
float tiltY = 0;
511493

512-
// Check if the event has pressure data
513-
if (Float.isNaN(pressure)) {
514-
pressure = 1f; // Default value if pressure data is not available
494+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
495+
tiltX = event.getAxisValue(MotionEvent.AXIS_TILT_X);
496+
tiltY = event.getAxisValue(MotionEvent.AXIS_TILT_Y);
515497
}
516498

517499
boolean sourceMouseRelative = false;
518-
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
519-
sourceMouseRelative = event.isFromSource(InputDevice.SOURCE_MOUSE_RELATIVE);
500+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
501+
sourceMouseRelative = event.isFromSource(InputDevice.SOURCE_MOUSE_RELATIVE);
520502
}
521503
return handleMouseEvent(eventAction, buttonsMask, x, y, horizontalFactor, verticalFactor, pressure, tiltX, tiltY, false, sourceMouseRelative);
522504
}
523-
505+
524506
static boolean handleMouseEvent(int eventAction, int buttonsMask, float x, float y) {
525507
return handleMouseEvent(eventAction, buttonsMask, x, y, 0, 0, false, false);
526508
}

0 commit comments

Comments
 (0)