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.
32 lines
834 B
32 lines
834 B
using System.Reflection;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Math", "Basic", "Subtract")]
|
|
class SubtractNode : CodeFunctionNode
|
|
{
|
|
public SubtractNode()
|
|
{
|
|
name = "Subtract";
|
|
synonyms = new string[] { "subtraction", "remove", "minus", "take away" };
|
|
}
|
|
|
|
protected override MethodInfo GetFunctionToConvert()
|
|
{
|
|
return GetType().GetMethod("Unity_Subtract", BindingFlags.Static | BindingFlags.NonPublic);
|
|
}
|
|
|
|
static string Unity_Subtract(
|
|
[Slot(0, Binding.None, 1, 1, 1, 1)] DynamicDimensionVector A,
|
|
[Slot(1, Binding.None, 1, 1, 1, 1)] DynamicDimensionVector B,
|
|
[Slot(2, Binding.None)] out DynamicDimensionVector Out)
|
|
{
|
|
return
|
|
@"
|
|
{
|
|
Out = A - B;
|
|
}
|
|
";
|
|
}
|
|
}
|
|
}
|