ShowWindow.cs
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using UnityEditor;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class ShowWindow
{
internal static PlasticWindow Plastic()
{
return ShowPlasticWindow(false);
}
internal static PlasticWindow PlasticAfterDownloadingProject()
{
return ShowPlasticWindow(true);
}
static PlasticWindow ShowPlasticWindow(bool disableCollabWhenLoaded)
{
PlasticWindow window = EditorWindow.GetWindow<PlasticWindow>(
UnityConstants.PLASTIC_WINDOW_TITLE,
true,
mConsoleWindowType,
mProjectBrowserType);
if (disableCollabWhenLoaded)
window.DisableCollabIfEnabledWhenLoaded();
window.SetupWindowTitle(PlasticNotification.Status.None);
return window;
}
static Type mConsoleWindowType = typeof(EditorWindow).
Assembly.GetType("UnityEditor.ConsoleWindow");
static Type mProjectBrowserType = typeof(EditorWindow).
Assembly.GetType("UnityEditor.ProjectBrowser");
}
}