Redesign mouse inspector class, add UI results panel

This commit is contained in:
Sinai
2021-09-06 17:10:01 +10:00
parent a1d0b6432e
commit fcdfeb2dec
7 changed files with 359 additions and 229 deletions

View File

@ -27,7 +27,8 @@ namespace UnityExplorer.UI
Options,
ConsoleLog,
AutoCompleter,
MouseInspector
MouseInspector,
UIInspectorResults,
}
public enum VerticalAnchor
@ -108,6 +109,7 @@ namespace UnityExplorer.UI
UIPanels.Add(Panels.CSConsole, new CSConsolePanel());
UIPanels.Add(Panels.ConsoleLog, new LogPanel());
UIPanels.Add(Panels.Options, new OptionsPanel());
UIPanels.Add(Panels.UIInspectorResults, new UiInspectorResultsPanel());
UIPanels.Add(Panels.MouseInspector, new InspectUnderMouse());
foreach (var panel in UIPanels.Values)