public static void ShowEditorFromContextMenu()
        {
            var editor = Flow.ShowEditor(null);

            var selectedObject = Selection.activeObject as FlowData;

            if (selectedObject != null)
            {
                editor.OpenFlowData(selectedObject);
            }
        }
 public void Show(System.Action onClose)
 {
     Flow.ShowEditor(onClose);
 }
 public static void ShowEditor()
 {
     Flow.ShowEditor(null);
 }