16 lines
311 B
C#
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);
|
|
}
|
|
}
|
|
} |