소스 검색

Merge pull request #58317 from naithar/fix/ios-drag-input

Rémi Verschelde 3 년 전
부모
커밋
6a51999b7f
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;
 		return;
 	}
 	}
 
 
-	[self.godotView touchesMoved:cleared withEvent:event];
+	[self.godotView godotTouchesMoved:cleared withEvent:event];
 
 
 	[super touchesMoved:touches withEvent:event];
 	[super touchesMoved:touches withEvent:event];
 }
 }