您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
438 B
22 行
438 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using GraphProcessor;
|
|
using System.Linq;
|
|
|
|
[System.Serializable, NodeMenuItem("Custom/#NAME#")]
|
|
public class #SCRIPTNAME# : BaseNode
|
|
{
|
|
[Input(name = "In")]
|
|
public float input;
|
|
|
|
[Output(name = "Out")]
|
|
public float output;
|
|
|
|
public override string name => "#NAME#";
|
|
|
|
protected override void Process()
|
|
{
|
|
output = input * 42;
|
|
}
|
|
}
|