コード例 #1
0
ファイル: ActionPickOption.cs プロジェクト: carljh5/DogFight
    IEnumerator PickOptionRoutine()
    {
        yield return(new WaitForSeconds(SecondsBeforeAutoPick));

        foreach (var p in panelsToDeactivate)
        {
            p.SetActive(false);
        }

        Manager.Round(FightManager.FightAction.NoAction);
    }
コード例 #2
0
ファイル: ActionBtn.cs プロジェクト: carljh5/DogFight
 public void Action()
 {
     fightManager.Round(fightAction);
 }