Added RelayNodeView;

Chnaged GraphView to multiple files for better organization;
This commit is contained in:
Misaki
2024-11-05 22:46:42 +09:00
parent c853994bf5
commit 02ae77f17a
25 changed files with 863 additions and 620 deletions

View File

@@ -1,11 +1,9 @@
using System.Collections.Generic;
using UnityEditor.Experimental.GraphView;
using UnityEditor.Experimental.GraphView;
namespace Misaki.GraphView.Editor
{
public interface IPortContainer
{
public List<Port> InputPorts { get; }
public List<Port> OutputPorts { get; }
public Port GetPort(int index, Direction direction);
}
}