summaryrefslogtreecommitdiffstats
path: root/Scripts/Fold/Editor/PointAlignNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/Fold/Editor/PointAlignNode.cs')
-rw-r--r--Scripts/Fold/Editor/PointAlignNode.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Scripts/Fold/Editor/PointAlignNode.cs b/Scripts/Fold/Editor/PointAlignNode.cs
new file mode 100644
index 0000000..9a3f913
--- /dev/null
+++ b/Scripts/Fold/Editor/PointAlignNode.cs
@@ -0,0 +1,15 @@
+using GraphProcessor;
+using UnityEngine;
+
+[System.Serializable, NodeMenuItem("Fold/PointAlign")]
+public class PointAlignNode : BaseFoldNode
+{
+ [Input(name = "po")]
+ public float po;
+
+ [Output(name = "Out")]
+ public PointAlignNode output;
+
+ public override string name => "Point Align";
+}
+