瀏覽代碼

Merge pull request #74367 from webair/increase-max-touches-ios

iOS: Increase max simultaneous touches to 32
Rémi Verschelde 2 年之前
父節點
當前提交
9ab52d8773
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      platform/ios/godot_view.mm

+ 1 - 1
platform/ios/godot_view.mm

@@ -39,7 +39,7 @@
 
 #import <CoreMotion/CoreMotion.h>
 
-static const int max_touches = 8;
+static const int max_touches = 32;
 static const float earth_gravity = 9.80665;
 
 @interface GodotView () {