소스 검색

[iOS] Fix incorrect method name for input dragging event

Sergey Minakov 3 년 전
부모
커밋
8b3ac9479e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      platform/iphone/godot_view_gesture_recognizer.mm

+ 1 - 1
platform/iphone/godot_view_gesture_recognizer.mm

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