Files
com.misaki.graph-view/Sample/Runtime/Nodes/OutputNode.cs
2024-11-02 17:58:52 +09:00

16 lines
311 B
C#

using UnityEngine;
namespace Misaki.GraphView.Sample
{
[NodeInfo("Output Node", "Output")]
public class OutputNode : BackTraceBaseNode
{
[NodeInput]
private float _input;
protected override void OnExecute()
{
Debug.Log(_input);
}
}
}