Skip to content

Unit Reference ConvertNode

S2NX7 edited this page Sep 30, 2025 · 3 revisions

Convert Node

Convert Node

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 specified type.
    • ToArrayOfObject → Converted to object[].
    • ToListOfObject → Converted to List<object>.
Clone this wiki locally