private void ConstructGraphView() { _graphView = new NoduxGraphView(this) { name = "NoduxGraph" }; _graphView.StretchToParentSize(); rootVisualElement.Add(_graphView); }
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(); }
public NoduxGraphSaveUtility(NoduxGraphView view) { this._graphView = view; }