Exemplo n.º 1
0
        public EditorGUIView GetEditorGUIView()
        {
            if (view == null)
            {
                view = new EditorGUIView(CreateRootEditorGUIElement().InitilizeAndGet());
            }

            return(view);
        }
Exemplo n.º 2
0
        public void Open(string title, Process <EditorGUIElement_Container_Auto> process)
        {
            element = new EditorGUIElement_ScrollBox_VerticalStrip(this.GetHeight());

            process(element.GetElement());
            element.Initialize();

            view = new EditorGUIView(element);

            titleContent = new GUIContent(title);
            ShowUtility();
        }