private static void ConfigureWindow(GraphAsset graphAsset) { if (graphAsset == null) { return; } GraphAssetEditorWindow window = EditorWindow.GetWindow(typeof(GraphAssetEditorWindow)) as GraphAssetEditorWindow; window.ConfigureWithGraphAsset(graphAsset); window.Show(); }
public static void ShowWindow() { GraphAssetEditorWindow window = EditorWindow.GetWindow(typeof(GraphAssetEditorWindow)) as GraphAssetEditorWindow; window.Show(); }