Esempio n. 1
0
 public void ShowIntro()
 {
     if (bossInfo.bossFightImage != null)
     {
         BossFightIntro.ShowIntro(this.bossInfo);
     }
 }
Esempio n. 2
0
 public void StartFight()
 {
     // state machine bugs
     if (this.hp <= 0)
     {
         return;
     }
     bossHealthUI.gameObject.SetActive(true);
     if (bossInfo.bossFightImage != null)
     {
         BossFightIntro.ShowIntro(this.bossInfo);
     }
     startBossFight.Raise();
 }