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

StateGraphContext.cs 545B

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