Ejemplo n.º 1
0
        private void OnGUI()
        {
            if (window == null)
            {
                window = this;
            }

            root.OnDrawGUI(new Rect(0, 0, position.width, position.height), this);
        }
Ejemplo n.º 2
0
 public static void InitWindow()
 {
     window = GetWindow <ComponentEditorWindow>();
     window.titleContent = new GUIContent("Component Editor");
     window.Construct();
     //window.wantsMouseMove = true;
     window.Show();
     //UnityEditor.Editor.
 }