Files
com.misaki.graph-view/Runtime/Models/Nodes/NodeGroupData.cs
Misaki d3c5968a80 Changed Slot in RelayNode to ProxySlot;
Changed PullData and PushData from SlotExtension to ISlot;

Added BackTraceExecutableNode;

Removed IExecutable from RelayNode;
2024-11-10 12:28:12 +09:00

20 lines
417 B
C#

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>();
}
}
}