@@ -488,39 +488,21 @@ static boolean handleMouseEvent(final MotionEvent event) {
488
488
float verticalFactor = event .getAxisValue (MotionEvent .AXIS_VSCROLL );
489
489
float horizontalFactor = event .getAxisValue (MotionEvent .AXIS_HSCROLL );
490
490
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 ;
511
493
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 );
515
497
}
516
498
517
499
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 );
520
502
}
521
503
return handleMouseEvent (eventAction , buttonsMask , x , y , horizontalFactor , verticalFactor , pressure , tiltX , tiltY , false , sourceMouseRelative );
522
504
}
523
-
505
+
524
506
static boolean handleMouseEvent (int eventAction , int buttonsMask , float x , float y ) {
525
507
return handleMouseEvent (eventAction , buttonsMask , x , y , 0 , 0 , false , false );
526
508
}
0 commit comments