Finish GameObject Inspector, start Search page, some other UI changes/fixes

This commit is contained in:
sinaioutlander
2020-11-06 20:42:16 +11:00
parent e175e9c438
commit 2efc3f6578
28 changed files with 2301 additions and 1184 deletions

View File

@ -19,6 +19,8 @@ namespace UnityExplorer.UI
// Create submodules
new MainMenu();
MouseInspector.ConstructUI();
// Force refresh of anchors
Canvas.ForceUpdateCanvases();
@ -89,6 +91,14 @@ namespace UnityExplorer.UI
{
PanelDragger.Instance.Update();
}
foreach (var slider in SliderScrollbar.Instances)
{
if (slider.m_slider.gameObject.activeInHierarchy)
{
slider.Update();
}
}
}
public static void OnSceneChange()