Overview
A special node that defines an output from a custom node (a subgraph turned into
a node). Place it inside a custom node to expose one output port on the outside.
Together with input_pin, it forms the custom node's input/output interface.
Usage tips
- Connect the completed value from the internal graph to the
valueinput; it is then emitted from the external output port. pin_name/port_typedetermine the port's appearance and connection compatibility outside. Match them to the type of the value connected internally.- Place multiple Output Pin nodes to give a custom node multiple outputs (for example, both an image and a mask).
Related nodes
input_pin— its input-side counterpart (use them together)bake_subgraph/snapshot_node— caching nodes related to custom-node workflows