various improvements to reflection inspector and C# console

This commit is contained in:
sinaioutlander
2020-11-12 16:15:41 +11:00
parent 2077601464
commit a7f86227fb
28 changed files with 656 additions and 420 deletions

View File

@ -15,6 +15,8 @@ namespace UnityExplorer.Inspectors
{
public static SceneExplorer Instance;
internal static Action OnToggleShow;
public SceneExplorer()
{
Instance = this;
@ -55,6 +57,7 @@ namespace UnityExplorer.Inspectors
return m_dontDestroyObject;
}
}
internal static GameObject m_dontDestroyObject;
public void Init()
@ -459,6 +462,8 @@ namespace UnityExplorer.Inspectors
scrollObj.SetActive(true);
Update();
}
OnToggleShow?.Invoke();
}
}