internal static void ShowWindow()
        {
            PlasticSCMWindow window = GetWindow <PlasticSCMWindow>();

            window.titleContent = new GUIContent(
                UnityConstants.PLASTIC_WINDOW_TITLE,
                Images.GetImage(Images.Name.IconPlasticView));

            window.minSize = new Vector2(750, 260);

            window.Show();
        }
Exemple #2
0
 static void TrySimplifiedUIButton_Clicked(object obj)
 {
     PlasticSCMWindow.ShowWindow();
 }