Unit Reference ConvertNode - RealityStop/Bolt.Addons.Community GitHub Wiki
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>.
-
