Changed Slot in RelayNode to ProxySlot;

Changed PullData and PushData from SlotExtension to ISlot;

Added BackTraceExecutableNode;

Removed IExecutable from RelayNode;
This commit is contained in:
Misaki
2024-11-10 12:28:12 +09:00
parent 994297a3f2
commit d3c5968a80
21 changed files with 398 additions and 281 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
namespace Misaki.GraphView
{
[Serializable]
public struct NodeGroupData
{
public string id;
public string name;
public List<string> nodeIds;
public NodeGroupData(string groupName)
{
id = Guid.NewGuid().ToString();
name = groupName;
nodeIds = new List<string>();
}
}
}