-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference ConvertNode
S2NX7 edited this page Sep 30, 2025
·
3 revisions
The Convert node allows you to transform a value from one type to another at runtime.
It supports conversion to any specified type, to an array of objects, or to a list of objects.
This node is particularly useful for working with dynamic data or preparing values for other nodes that expect a specific type.
Input Ports
- value : The input value to be converted. Can be any object or collection.
Output Ports
-
result : The converted value, whose type depends on the node's conversion mode:
-
Any
→ Converted to the specifiedtype
. -
ToArrayOfObject
→ Converted toobject[]
. -
ToListOfObject
→ Converted toList<object>
.
-