Beispiel #1
0
 void Start()
 {
     uiMenu           = GetComponentInChildren <UIMenu>();
     energyIndicators = GetComponentsInChildren <ChosenEnergyIndicator>().ToList();
     uIIntermission   = GetComponentInChildren <UIIntermission>();
     ShowGameStart();
 }
Beispiel #2
0
 public void UpdateIntermissionInfo(string info)
 {
     if (showIntermission)
     {
         if (uIIntermission == null)
         {
             uIIntermission = GetComponentInChildren <UIIntermission>();
         }
         uIIntermission.UpdateInfo(info);
     }
 }
Beispiel #3
0
 public void UpdateIntermissionTimer(float time)
 {
     if (showIntermission)
     {
         if (uIIntermission == null)
         {
             uIIntermission = GetComponentInChildren <UIIntermission>();
         }
         uIIntermission.UpdateTime(time);
     }
 }