Inheritance: EditorWindow
Ejemplo n.º 1
0
	public static void Init ()
	{
		if ( Instance != null )
			Instance.Close();

		// Get existing open window or if none, make a new one:
		Instance = EditorWindow.GetWindow<GitCommitWindow>(true, "Git Commit");

		Instance.InitFiles(true);
	}
Ejemplo n.º 2
0
    public static void Init()
    {
        if (Instance != null)
        {
            Instance.Close();
        }

        // Get existing open window or if none, make a new one:
        Instance = EditorWindow.GetWindow <GitCommitWindow>(true, "Git Commit");

        Instance.InitFiles(true);
    }
Ejemplo n.º 3
0
 static void GitCommit()
 {
     GitCommitWindow.Init();
 }