Passthrough
Last updated
Last updated
Passes a value directly from input to output without modifying it. This is useful for reorganizing graph connections or making temporary connections during development.
value
The value to pass through
Any
Yes
value
The same value as the input
Any
Drag the Passthrough node into your graph.
Connect any value to the "value" input.
Connect the "value" output to any node that should receive the original value.
The node will simply pass the value through without changing it.
Use Passthrough nodes to clean up complicated graph layouts by redirecting connections.
The node preserves the exact type of data passed through it, making it work with any value type.
Note: For adding comments to your graph without affecting data flow.
Objectify: For combining multiple values into an object structure.
Graph Organization: Improve the readability of complex graphs by rerouting connections.
Debugging: Insert between connections to create inspection points during development.
Interface Planning: Use as placeholders when designing node interfaces before implementation.