From 5b4d5061834ebab0524625b3772012227256a7b0 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 27 Jul 2022 14:33:08 +0200 Subject: [PATCH] Ported: Fix simulatenous touches for different touch types - Paulo Feodrippe https://github.com/godotengine/godot/commit/c46bbdee53905d0e2e934214a4ac30f3f1e3dba8 --- platform/iphone/pandemonium_view_gesture_recognizer.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/iphone/pandemonium_view_gesture_recognizer.mm b/platform/iphone/pandemonium_view_gesture_recognizer.mm index d11ceed28..83097b84a 100644 --- a/platform/iphone/pandemonium_view_gesture_recognizer.mm +++ b/platform/iphone/pandemonium_view_gesture_recognizer.mm @@ -57,6 +57,7 @@ const CGFloat kGLGestureMovementDistance = 0.5; self.cancelsTouchesInView = YES; self.delaysTouchesBegan = YES; self.delaysTouchesEnded = YES; + self.requiresExclusiveTouchType = NO; self.delayTimeInterval = GLOBAL_GET("input_devices/pointing/ios/touch_delay");