This article or section is a Stub. You can help the Resonite Wiki by expanding it.
Component image
The ButtonStringAppend component can be used to add a string to the beginning or end of a string whenever a button is pressed.
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. |
TargetString
|
IField<string> | The string to which AppendString will be added.
|
AppendString
|
String | The string to add to TargetString .
|
AppendInFront
|
Bool | Whether or not to add AppendString to the beginning of the string. (This does not reverse AppendString .)
|
Usage
To function, the component simply needs to be attached to a slot that also has a button component attached to it. From then on, pressing that button will activate the ButtonStringAppend, making it append its AppendString
to its TargetString
.