Browse Source

increased max touches to 32 for ios

(cherry picked from commit 54bd204377fb73a5871946005bd7cbbad4b91df9)
Chris Weber 2 years ago
parent
commit
914182ffe3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/iphone/godot_view.mm

+ 1 - 1
platform/iphone/godot_view.mm

@@ -42,7 +42,7 @@
 
 #import <CoreMotion/CoreMotion.h>
 
-static const int max_touches = 8;
+static const int max_touches = 32;
 
 @interface GodotView () {
 	UITouch *godot_touches[max_touches];