private static WindowComponentLibraryChooser GetInstance()
        {
            var editor = WindowComponentLibraryChooser.CreateInstance <WindowComponentLibraryChooser>();

            editor.title    = "UI.Windows Components Filter";
            editor.position = new Rect(0f, 0f, 1f, 1f);

            editor.ShowUtility();

            editor.UpdateSize();

            return(editor);
        }
예제 #2
0
        private static WindowComponentLibraryChooser GetInstance()
        {
            var editor = WindowComponentLibraryChooser.CreateInstance <WindowComponentLibraryChooser>();
            var title  = "UI.Windows Components Filter";

                        #if !UNITY_4
            editor.titleContent = new GUIContent(title);
                        #else
            editor.title = title;
                        #endif
            editor.position = new Rect(0f, 0f, 1f, 1f);

            editor.ShowUtility();

            editor.UpdateSize();

            return(editor);
        }