From e3cd47f6ccd34823c8de63393b21fb53958304fc Mon Sep 17 00:00:00 2001 From: Sergey Minakov Date: Sat, 26 Feb 2022 23:18:28 +0300 Subject: [PATCH] [iOS] Fix multitouch not working correctly (cherry picked from commit 15ef056997190b288d0951ba5cc6414ce3f780a6) --- platform/iphone/godot_view.mm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform/iphone/godot_view.mm b/platform/iphone/godot_view.mm index dc6623cb531..5cf914176d0 100644 --- a/platform/iphone/godot_view.mm +++ b/platform/iphone/godot_view.mm @@ -145,6 +145,8 @@ static const int max_touches = 8; [self initTouches]; + self.multipleTouchEnabled = YES; + // Configure and start accelerometer if (!self.motionManager) { self.motionManager = [[CMMotionManager alloc] init];