diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-01 08:45:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 08:45:29 +0100 |
commit | 32209e4ebdba202b627f947e1365abd83ca4fc5c (patch) | |
tree | 749982124e3c845d0036c5dc9887ac79ad378cb8 | |
parent | a09814e4f86861948615fcd83139de6ed9a34434 (diff) | |
parent | 15ef056997190b288d0951ba5cc6414ce3f780a6 (diff) |
Merge pull request #58586 from naithar/fix/ios-multitouch
[iOS] Fix multitouch not working correctly
-rw-r--r-- | platform/iphone/godot_view.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/iphone/godot_view.mm b/platform/iphone/godot_view.mm index da71312fc4..e48dd2e507 100644 --- a/platform/iphone/godot_view.mm +++ b/platform/iphone/godot_view.mm @@ -154,6 +154,8 @@ static const float earth_gravity = 9.80665; [self initTouches]; + self.multipleTouchEnabled = YES; + // Configure and start accelerometer if (!self.motionManager) { self.motionManager = [[CMMotionManager alloc] init]; |