using System.Reflection; using UnityEngine; namespace UnityEditor.ShaderGraph { [Title("Math", "Derivative", "DDY")] public class DDYNode : CodeFunctionNode { public DDYNode() { name = "DDY"; } public override string documentationURL { get { return "https://github.com/Unity-Technologies/ShaderGraph/wiki/DDY-Node"; } } protected override MethodInfo GetFunctionToConvert() { return GetType().GetMethod("Unity_DDY", BindingFlags.Static | BindingFlags.NonPublic); } static string Unity_DDY( [Slot(0, Binding.None)] DynamicDimensionVector In, [Slot(1, Binding.None)] out DynamicDimensionVector Out) { return @" { Out = ddy(In); } "; } } }