Update ScenePage.cs

This commit is contained in:
sinaioutlander 2020-09-06 03:19:39 +10:00
parent ffb6cad8c2
commit 9a059c1056

View File

@ -12,13 +12,15 @@ namespace Explorer
{ {
public static ScenePage Instance; public static ScenePage Instance;
public override string Name { get => "Scene Explorer"; set => base.Name = value; } public override string Name { get => "Scene Explorer"; }
public PageHelper Pages = new PageHelper(); public PageHelper Pages = new PageHelper();
private float m_timeOfLastUpdate = -1f; private float m_timeOfLastUpdate = -1f;
private const int PASSIVE_UPDATE_INTERVAL = 1; private const int PASSIVE_UPDATE_INTERVAL = 1;
private static bool m_getRootObjectsFailed;
// ----- Holders for GUI elements ----- // // ----- Holders for GUI elements ----- //
private static string m_currentScene = ""; private static string m_currentScene = "";