Просмотр исходного кода

[iOS] Fix incorrect method name for input dragging event

Sergey Minakov 3 лет назад
Родитель
Сommit
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];
 }