You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
753 B
31 lines
753 B
using System.Reflection;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Math", "Wave", "Sawtooth Wave")]
|
|
class SawtoothWaveNode : CodeFunctionNode
|
|
{
|
|
public SawtoothWaveNode()
|
|
{
|
|
name = "Sawtooth Wave";
|
|
synonyms = new string[] { "triangle wave" };
|
|
}
|
|
|
|
protected override MethodInfo GetFunctionToConvert()
|
|
{
|
|
return GetType().GetMethod("SawtoothWave", BindingFlags.Static | BindingFlags.NonPublic);
|
|
}
|
|
|
|
static string SawtoothWave(
|
|
[Slot(0, Binding.None)] DynamicDimensionVector In,
|
|
[Slot(1, Binding.None)] out DynamicDimensionVector Out)
|
|
{
|
|
return
|
|
@"
|
|
{
|
|
Out = 2 * (In - floor(0.5 + In));
|
|
}
|
|
";
|
|
}
|
|
}
|
|
}
|