Page:
Nodes/Utils/GenericConnection
Pages
Guides/QuickStart
Home
Nodes/BaseImageNode
Nodes/Image/Desaturate
Nodes/Image/GetDimensions
Nodes/Image/Invert
Nodes/Image/InvertChannel
Nodes/Image/RGBACombine
Nodes/Image/RGBASplit
Nodes/Image/Texture2DImport
Nodes/Image/Texture2DOutput
Nodes/Image/VariableNode
Nodes/Image/ViewImageNode
Nodes/Images/FromPathNode
Nodes/Images/SingleChannelColor
Nodes/String/Append
Nodes/String/Replace
Nodes/String/Split
Nodes/Utils/GenericConnection
quick-start
Clone
1
Nodes/Utils/GenericConnection
Chromum edited this page 2025-05-09 10:46:09 +00:00
Table of Contents
Generic Connection
🔌 INPUT PORTS
Name | Type | Description |
---|---|---|
Unnamed | object |
A generic input of any data type. |
📤 EXPORT PORTS
Name | Type | Description |
---|---|---|
Unnamed | object |
The output is passed through directly from the input. |
📝 DESCRIPTION
The Generic Connection node serves as a passthrough or flexible adapter between ports of the same type.
It is especially useful for organizing graphs.
The type of data passed through is determined at runtime and is set using the internal InternalType
property.
This node is derived from BaseImageNode
.
This node also uses a custom editor: GenericConnectionEditor
, which hides the title bar in the graph view.
⚠️ KNOWN ISSUES
- As this node passes data as a generic
object
, invalid or mismatched types can result in runtime errors if connected incorrectly. (This should be alleviated by backend checks but can still happen in rare cases.)