Explorar o código

[iOS] Fix incorrect method name for input dragging event

Sergey Minakov %!s(int64=3) %!d(string=hai) anos
pai
achega
8b3ac9479e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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];
 }