public void StartMove(ScriptableMovement scriptableMove) { if (moveCoroutine != null) { StopCoroutine(moveCoroutine); } moveCoroutine = MoveCoroutine(scriptableMove.GetMover()); StartCoroutine(moveCoroutine); }
public void StartMove(ScriptableMovement scriptableMove) { movable.StartMove(scriptableMove); }
private void MoveInputButtonOnClick(ScriptableMovement scriptableMove) { MoveInputButtonEvent.Invoke(scriptableMove); }