Files
Test-Multiplayer/Library/PackageCache/com.unity.visualscripting@b4d700247d4b/Editor/VisualScripting.Flow/FlowGraphContext.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02:00

19 lines
541 B
C#

using System.Collections.Generic;
namespace Unity.VisualScripting
{
[GraphContext(typeof(FlowGraph))]
public class FlowGraphContext : GraphContext<FlowGraph, FlowCanvas>
{
public FlowGraphContext(GraphReference reference) : base(reference) { }
public override string windowTitle => "Script Graph";
protected override IEnumerable<ISidebarPanelContent> SidebarPanels()
{
yield return new GraphInspectorPanel(this);
yield return new VariablesPanel(this);
}
}
}