コード例 #1
0
ファイル: Ball.cs プロジェクト: dxm6996/moveball
 public void StartMove(ScriptableMovement scriptableMove)
 {
     if (moveCoroutine != null)
     {
         StopCoroutine(moveCoroutine);
     }
     moveCoroutine = MoveCoroutine(scriptableMove.GetMover());
     StartCoroutine(moveCoroutine);
 }
コード例 #2
0
 public void StartMove(ScriptableMovement scriptableMove)
 {
     movable.StartMove(scriptableMove);
 }
コード例 #3
0
ファイル: UiController.cs プロジェクト: dxm6996/moveball
 private void MoveInputButtonOnClick(ScriptableMovement scriptableMove)
 {
     MoveInputButtonEvent.Invoke(scriptableMove);
 }