瀏覽代碼

[iOS] Fix incorrect method name for input dragging event

(cherry picked from commit 8b3ac9479e484fa8c7ba83b840301bbbcfa76ef3)
Sergey Minakov 3 年之前
父節點
當前提交
4282076ab5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      platform/iphone/godot_view_gesture_recognizer.mm

+ 1 - 1
platform/iphone/godot_view_gesture_recognizer.mm

@@ -115,7 +115,7 @@ const CGFloat kGLGestureMovementDistance = 0.5;
 		return;
 	}
 
-	[self.godotView touchesMoved:cleared withEvent:event];
+	[self.godotView godotTouchesMoved:cleared withEvent:event];
 
 	[super touchesMoved:touches withEvent:event];
 }