From 54bd204377fb73a5871946005bd7cbbad4b91df9 Mon Sep 17 00:00:00 2001 From: Chris Weber Date: Sat, 4 Mar 2023 17:24:00 +0100 Subject: [PATCH] increased max touches to 32 for ios --- platform/ios/godot_view.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/ios/godot_view.mm b/platform/ios/godot_view.mm index fafec79bf684..67e47092d8a6 100644 --- a/platform/ios/godot_view.mm +++ b/platform/ios/godot_view.mm @@ -39,7 +39,7 @@ #import -static const int max_touches = 8; +static const int max_touches = 32; static const float earth_gravity = 9.80665; @interface GodotView () {