Updated RelayNode;

Added ISlot interface;
Added ProxySlot;
This commit is contained in:
Misaki
2024-11-08 20:56:19 +09:00
parent e15570459c
commit 994297a3f2
22 changed files with 426 additions and 268 deletions

View File

@@ -1,13 +1,11 @@
using UnityEngine;
namespace Misaki.GraphView.Sample
{
[NodeInfo("Output Node", "Output")]
public class Output : BackTraceExecutableNode
public class Output : ExecutableNode
{
[NodeInput]
private float _input;
protected override bool OnExecute()
{
GraphObject.Logger.LogInfo(this, $"{_input}");