1234567891011121314151617181920212223242526272829303132 |
- using System.Reflection;
- namespace UnityEditor.ShaderGraph
- {
- [Title("Math", "Round", "Step")]
- class StepNode : CodeFunctionNode
- {
- public StepNode()
- {
- name = "Step";
- }
- protected override MethodInfo GetFunctionToConvert()
- {
- return GetType().GetMethod("Unity_Step", BindingFlags.Static | BindingFlags.NonPublic);
- }
- static string Unity_Step(
- [Slot(0, Binding.None, 1, 1, 1, 1)] DynamicDimensionVector Edge,
- [Slot(1, Binding.None, 0, 0, 0, 0)] DynamicDimensionVector In,
- [Slot(2, Binding.None)] out DynamicDimensionVector Out)
- {
- return
- @"
- {
- Out = step(Edge, In);
- }
- ";
- }
- }
- }
|