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