Beispiel #1
0
 private void ConstructGraphView()
 {
     _graphView = new NoduxGraphView(this)
     {
         name = "NoduxGraph"
     };
     _graphView.StretchToParentSize();
     rootVisualElement.Add(_graphView);
 }
Beispiel #2
0
        public void Initialize(EditorWindow window, NoduxGraphView view)
        {
            _graphView = view;
            _window    = window;

            // Indentation hack for search window
            _indentationIcon = new Texture2D(1, 1);
            _indentationIcon.SetPixel(0, 0, new Color(0, 0, 0, 0));
            _indentationIcon.Apply();
        }
Beispiel #3
0
 public NoduxGraphSaveUtility(NoduxGraphView view)
 {
     this._graphView = view;
 }