您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
33 行
924 B
33 行
924 B
using UnityEngine.Graphing;
|
|
|
|
namespace UnityEngine.MaterialGraph
|
|
{
|
|
[Title("Input/Sine Time Node")]
|
|
public class SinTimeNode : AbstractMaterialNode, IRequiresTime
|
|
{
|
|
public SinTimeNode()
|
|
{
|
|
name = "Sine Time";
|
|
UpdateNodeAfterDeserialization();
|
|
}
|
|
|
|
private const int kOutputSlotId = 0;
|
|
private const string kOutputSlotName = "SinTime";
|
|
|
|
public sealed override void UpdateNodeAfterDeserialization()
|
|
{
|
|
AddSlot(new MaterialSlot(kOutputSlotId, kOutputSlotName, kOutputSlotName, SlotType.Output, SlotValueType.Vector4, Vector4.one));
|
|
RemoveSlotsNameNotMatching(new[] { kOutputSlotId });
|
|
}
|
|
|
|
public override bool hasPreview
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
public override string GetVariableNameForSlot(int slotIds)
|
|
{
|
|
return "_SinTime";
|
|
}
|
|
}
|
|
}
|