暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FlowGraphContext.cs 541B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace Unity.VisualScripting
  3. {
  4. [GraphContext(typeof(FlowGraph))]
  5. public class FlowGraphContext : GraphContext<FlowGraph, FlowCanvas>
  6. {
  7. public FlowGraphContext(GraphReference reference) : base(reference) { }
  8. public override string windowTitle => "Script Graph";
  9. protected override IEnumerable<ISidebarPanelContent> SidebarPanels()
  10. {
  11. yield return new GraphInspectorPanel(this);
  12. yield return new VariablesPanel(this);
  13. }
  14. }
  15. }