mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 01:06:01 +08:00
15 lines
344 B
C#
15 lines
344 B
C#
|
|
using XNode.Flow;
|
|
|
|
namespace XNodeEditor.Flow
|
|
{
|
|
[CustomNodeEditor(typeof(FlowNode))]
|
|
public class FlowNodeEditor : NodeEditor
|
|
{
|
|
public override void OnBodyGUI()
|
|
{
|
|
NodeEditorGUILayout.PortPair(target.GetPort("previousNode"), target.GetPort("nextNode"));
|
|
base.OnBodyGUI();
|
|
}
|
|
}
|
|
} |