修改了远程环境的节点加载流程、容器节点子节点的位置关系

This commit is contained in:
fengjiayi
2024-12-26 00:26:50 +08:00
parent 5b0ba84fd6
commit 56b22be8c0
89 changed files with 1060 additions and 4953 deletions

View File

@@ -105,12 +105,12 @@ namespace Serein.Library
public Dictionary<ConnectionInvokeType, List<NodeModelBase>> SuccessorNodes { get; }
/// <summary>
/// 该节点的父级节点(容器)
/// 该节点的容器节点
/// </summary>
public NodeModelBase ParentNode { get; set; } = null;
public NodeModelBase ContainerNode { get; set; } = null;
/// <summary>
/// 该节点的子项节点(容器
/// 该节点的子项节点(如果该节点是容器节点,那就会有这个参数
/// </summary>
public List<NodeModelBase> ChildrenNode { get; }