Esempio n. 1
0
 public void ToggleAppLauncher()
 {
     showWindow = !showWindow;
     toolbarPanel.SetVisible(showWindow);
     if (showWindow)
     {
         SystemHeatOverlay.Instance.SetVisible(toolbarPanel.overlayToggle.isOn);
         SystemHeatDebugUI.SetVisible(toolbarPanel.debugToggle.isOn);
     }
     else
     {
         SystemHeatOverlay.Instance.SetVisible(false);
         SystemHeatDebugUI.SetVisible(false);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="uiHost">The instance of the main UI class to link to </param>
 public UIDebugLoopsView(SystemHeatDebugUI uiHost) : base(uiHost)
 {
     dataHost = uiHost;
 }
Esempio n. 3
0
 public void ToggleDebug()
 {
     SystemHeatDebugUI.ToggleWindow();
 }