尝试使用源生成器规范NodeModel代码逻辑

This commit is contained in:
fengjiayi
2024-10-20 12:10:57 +08:00
parent 9931fa7436
commit e38833a58c
127 changed files with 5173 additions and 1839 deletions

View File

@@ -4,7 +4,7 @@ using System.Text;
using System.Threading.Tasks;
using static Serein.Library.Utils.ChannelFlowInterrupt;
namespace Serein.Library.Entity
namespace Serein.Library
{
/// <summary>
/// 节点调试设置,用于中断节点的运行
@@ -12,7 +12,7 @@ namespace Serein.Library.Entity
public class NodeDebugSetting
{
/// <summary>
/// 是否使能(调试中断功能)
/// 是否使能
/// </summary>
public bool IsEnable { get; set; } = true;
@@ -48,10 +48,6 @@ namespace Serein.Library.Entity
/// </summary>
Branch,
/// <summary>
/// 分组中断,中断进入指定节点分组的分支。(暂未实现相关)
/// </summary>
// Group,
/// <summary>
/// 全局中断,中断全局所有节点的运行。(暂未实现相关)
/// </summary>
Global,