Files
com.misaki.graph-view/Sample/Runtime/Models/Nodes/Output.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

16 lines
339 B
C#

namespace Misaki.GraphView.Sample
{
[NodeInfo("Output Node", "Output")]
public class Output : BackTraceExecutableNode
{
[NodeInput]
private float _input;
protected override bool OnExecute()
{
GraphObject.Logger.LogInfo(this, $"{_input}");
return true;
}
}
}