CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Flow/FlowGraphContext.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05: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);
}
}
}