Component:StringConcatenationDriver

From Resonite Wiki
Component image 
String Concatenation Driver component as seen in the Scene Inspector

The StringConcatenationDriver component constructs a string from the inputted list of strings.

Fields

Fields
Name Type Description
persistent Bool Determines whether or not this item will be saved to the server.
UpdateOrder Int Controls the order in which this component is updated.
Enabled Bool Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't.
TargetString field drive of String The field to drive with the resulting completed string.
Separator String What text to put between each pair of strings when building the string. This can be something like a comma, a space, or anything else the user desires.
Strings direct SyncFieldList`1<String> A list of strings to join together separated by Seperator.
NullOutputWhenAllAreNull Bool Whether to null the entire string when all Strings fields are null.

Usage

Attach to a slot and add a list of strings to Strings and a TargetString for this to start working.

Examples

Can be used to automatically construct dynamic variable names without ProtoFlux. It can also be used to drive UIX.

See Also