Browse Source

Merge pull request #58586 from naithar/fix/ios-multitouch

[iOS] Fix multitouch not working correctly
Rémi Verschelde 3 years ago
parent
commit
32209e4ebd
1 changed files with 2 additions and 0 deletions
  1. 2 0
      platform/iphone/godot_view.mm

+ 2 - 0
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];