mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-04 12:32:23 +08:00
Cleanup CSConsole, add start of Options and Log panels
This commit is contained in:
@ -39,10 +39,12 @@ namespace UnityExplorer.UI
|
||||
|
||||
// panels
|
||||
internal static GameObject PanelHolder { get; private set; }
|
||||
|
||||
|
||||
public static ObjectExplorerPanel Explorer { get; private set; }
|
||||
public static InspectorPanel Inspector { get; private set; }
|
||||
public static CSConsolePanel CSharpConsole { get; private set; }
|
||||
public static OptionsPanel Options { get; private set; }
|
||||
public static ConsoleLogPanel ConsoleLog { get; private set; }
|
||||
|
||||
public static AutoCompleteModal AutoCompleter { get; private set; }
|
||||
|
||||
@ -180,6 +182,12 @@ namespace UnityExplorer.UI
|
||||
CSharpConsole.ConstructUI();
|
||||
ConsoleController.Init();
|
||||
|
||||
Options = new OptionsPanel();
|
||||
Options.ConstructUI();
|
||||
|
||||
ConsoleLog = new ConsoleLogPanel();
|
||||
ConsoleLog.ConstructUI();
|
||||
|
||||
ShowMenu = !ConfigManager.Hide_On_Startup.Value;
|
||||
|
||||
ExplorerCore.Log("UI initialized.");
|
||||
|
Reference in New Issue
Block a user