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:
20
Runtime/Models/Nodes/NodeGroupData.cs
Normal file
20
Runtime/Models/Nodes/NodeGroupData.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user