diff options
| author | yum <yum.food.vr@gmail.com> | 2026-01-02 17:32:05 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2026-01-02 17:32:14 -0800 |
| commit | 9b45bce6d4ca528cf5bbc78aeaa0b6b06e0f1a29 (patch) | |
| tree | 6fa297bf6c768d3c4552762d572a55e23f2978e8 /Scripts/Fold/Editor/BaseFoldNode.cs | |
| parent | fcc76b257ef5cfb4514669df3b0144f8e8dd76ef (diff) | |
Fold: add more nodes
Diffstat (limited to 'Scripts/Fold/Editor/BaseFoldNode.cs')
| -rw-r--r-- | Scripts/Fold/Editor/BaseFoldNode.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Scripts/Fold/Editor/BaseFoldNode.cs b/Scripts/Fold/Editor/BaseFoldNode.cs index 203a89a..e8b394e 100644 --- a/Scripts/Fold/Editor/BaseFoldNode.cs +++ b/Scripts/Fold/Editor/BaseFoldNode.cs @@ -5,6 +5,9 @@ public abstract class BaseFoldNode : BaseNode [Input(name = "Input")] public BaseFoldNode input; + [Output(name = "Out")] + public BaseFoldNode output; + // Generate a generic representation of the node. This is used for animation. public abstract FoldNodeSerialized Serialize(); } |
