Example #1
0
    public static void Open(string heading)
    {
        BuildWindowProgress window = GetWindow <BuildWindowProgress>(false);

        window.position = new Rect(200, 200, 800, 500);// new Rect(Screen.width / 2, Screen.height / 2, 800, 350);
        window.ShowPopup();
        window.heading = heading;
        logs           = new List <string>();
        Application.logMessageReceived += Msg;
    }
 public static void TestRegistriesMenu()
 {
     BuildWindowProgress.Open("Verify Registries");
     TestRegistries();
 }
Example #3
0
 public static void DryrunUpdateRegistries()
 {
     BuildWindowProgress.Open("Dryrun Registry Update");
     UpdateRegistries(true);
 }