コード例 #1
0
        private void OnEnable()
        {
            if (_editor == null)
            {
                _editor = new GraphViewEditor(this);
                rootVisualElement.Add(_editor);

                if (_graph != null)
                {
                    _editor.SetGraph(_graph);
                }
            }
        }
コード例 #2
0
 private void OnDisable()
 {
     _graph  = _editor.CurrentGraph;
     _editor = null;
 }