Ejemplo n.º 1
0
        public override void AddToGUIUpdateList()
        {
            if (!isRunning)
            {
                return;
            }

            base.AddToGUIUpdateList();
            CrewManager.AddToGUIUpdateList();
        }
Ejemplo n.º 2
0
        public override void AddToGUIUpdateList()
        {
            if (!isRunning)
            {
                return;
            }

            base.AddToGUIUpdateList();
            CrewManager.AddToGUIUpdateList();
            endRoundButton.AddToGUIUpdateList();

            if (ContextualTutorial.Initialized)
            {
                ContextualTutorial.AddToGUIUpdateList();
            }
        }
Ejemplo n.º 3
0
 public override void AddToGUIUpdateList()
 {
     if (ShowCampaignUI || ForceMapUI)
     {
         campaignUIContainer?.AddToGUIUpdateList();
         if (CampaignUI?.UpgradeStore?.HoveredItem != null)
         {
             if (CampaignUI.SelectedTab != InteractionType.Upgrade)
             {
                 return;
             }
             CampaignUI?.UpgradeStore?.ItemInfoFrame.AddToGUIUpdateList(order: 1);
         }
     }
     base.AddToGUIUpdateList();
     CrewManager.AddToGUIUpdateList();
     endRoundButton.AddToGUIUpdateList();
 }