void ShowStormancerDebug()
		{
			if (window == null)
				window = (StormancerEditorWindow)EditorWindow.GetWindow (typeof (StormancerEditorWindow));
			if (initiated == false)
					return;
	
           if (logsToShow != null)
            {
                ShowLogs();
            }
           else if (routeToShow != null)
            {
                ShowChart();
            }
            else
            {
                ShowClients();
            }
		}
Exemplo n.º 2
0
        void ShowStormancerDebug()
        {
            if (window == null)
            {
                window = (StormancerEditorWindow)EditorWindow.GetWindow(typeof(StormancerEditorWindow));
            }
            if (initiated == false)
            {
                return;
            }

            if (logsToShow != null)
            {
                ShowLogs();
            }
            else if (routeToShow != null)
            {
                ShowChart();
            }
            else
            {
                ShowClients();
            }
        }
		static void Init ()
		{
			window = (StormancerEditorWindow)EditorWindow.GetWindow (typeof (StormancerEditorWindow));
			window.Show();
        }
Exemplo n.º 4
0
 static void Init()
 {
     window = (StormancerEditorWindow)EditorWindow.GetWindow(typeof(StormancerEditorWindow));
     window.Show();
 }