Example #1
0
 //다음 웨이브 UI 설정.
 public void NextWave(int wave)
 {
     //첫 웨이브 제외하고 다음 웨이브로 넘어갈 때 마다 추가 점수 부여.
     if (wave > 1)
     {
         currentScore += System.Convert.ToInt32(InfoManager.Instance.infoGlobalList["WaveBonusScore"].value);
         ingameUI.SetScore(currentScore);
     }
     ingameUI.SetNextWaveUI(wave);
 }