Exemple #1
0
        public void Initialize(BaseGraphEditor graphEditor)
        {
            this.graphEditor = graphEditor;

            BindEvents();
            OnNodeEnable();
        }
        public static void Open <T>(BaseGraph graph) where T : BaseGraphEditor
        {
            BaseGraphEditor editor = EditorWindow.GetWindow <T>();

            editor.LoadGraph(graph);
            editor.Show();
        }
        public void Initialize(BaseGraphEditor graphEditor)
        {
            this.graphEditor = graphEditor;
            onGUI            = DrawDefault;

            OnEnable();
        }
        static T CreateLayoutPanel <T>(BaseGraphEditor graphEditor) where T : LayoutPanel, new()
        {
            LayoutPanel panel = new T() as LayoutPanel;

            panel.Initialize(graphEditor);

            return(panel as T);
        }
        public static Layout Create2ResizablePanelLayout(BaseGraphEditor graphEditor)
        {
            Layout layout = new Layout(graphEditor);

            var settingsPanel     = CreateLayoutPanel <BaseGraphSettingsPanel>(graphEditor);
            var nodeSelectorPanel = CreateLayoutPanel <BaseGraphNodeSelectorPanel>(graphEditor);
            var optionPanel       = CreateLayoutPanel <BaseGraphOptionPanel>(graphEditor);

            float minWidth = 60;
            int   p20      = Mathf.FloorToInt(graphEditor.position.width * .2f);
            int   p15      = Mathf.FloorToInt(graphEditor.position.width * .15f);
            int   p50      = Mathf.FloorToInt(graphEditor.position.width * .5f);

            var resizablePanel1Settings = new LayoutSetting(graphEditor.position)
            {
                separatorPosition = p20,
                separatorWidth    = 4,
                minWidth          = minWidth,
                maxWidth          = p50,
                initialized       = true,
            };
            //the layout infos (width, min, max, ...) are inverted because leftBar is true
            var resizablePanel2Settings = new LayoutSetting(graphEditor.position)
            {
                separatorPosition = p15,
                separatorWidth    = 4,
                minWidth          = minWidth,
                maxWidth          = p50,
                initialized       = true,
                leftBar           = true,
            };
            var staticPanelSettings = new LayoutSetting(graphEditor.position)
            {
                separatorPosition = EditorGUIUtility.singleLineHeight,
                initialized       = true,
            };

            layout.BeginHorizontal();
            {
                layout.ResizablePanel(resizablePanel1Settings, settingsPanel);
                layout.AutoSizePanel(staticPanelSettings, optionPanel);
                layout.ResizablePanel(resizablePanel2Settings, nodeSelectorPanel);
            }
            layout.EndHorizontal();

            if (graphEditor.graph != null)
            {
                layout.UpdateLayoutSettings(graphEditor.graph.layoutSettings);
            }

            return(layout);
        }
        public static bool OnOpenAssetAttribute(int instanceId, int line)
        {
            object instance = EditorUtility.InstanceIDToObject(instanceId);

            //if selected object is not a graph
            if (!editorTypeTable.ContainsKey(instance.GetType()))
            {
                return(false);
            }

            //open Graph window:
            BaseGraphEditor window = (BaseGraphEditor)EditorWindow.GetWindow(editorTypeTable[instance.GetType()]);

            window.Show();
            window.LoadGraph(instance as BaseGraph);

            return(false);
        }
Exemple #7
0
 //Private constructor so the only way to create an instance of this class is LayoutFactory
 public Layout(BaseGraphEditor graphEditor)
 {
     this.graphEditor = graphEditor;
 }
 public virtual void Initialize(BaseGraphEditor graphEditor)
 {
 }