Search Unity

Multiple tab of the same Editor Window

Discussion in 'Immediate Mode GUI (IMGUI)' started by van_ustwo, Apr 1, 2016.

  1. van_ustwo

    van_ustwo

    Joined:
    Jul 10, 2012
    Posts:
    82
    Is it possible to have multiple tabs of the same Editor Window?
    I want to have 2 or more TestEditor in the Editor.

    public class TestEditor:EditorWindow{

    [MenuItem("Test/Show")]
    static void ShowEditor()
    {
    EditorWindow.GetWindow<TestEditor>();
    }

    }