Component:TextField

From Resonite Wiki
This page contains changes which are not marked for translation.
Component image 
TextField component as seen in the Scene Inspector


The TextField component is used in conjunction with a TextEditor, Text, and Button component to provide an editable text field. The Text component stores the text, the TextEditor is the editor for the text, and the Button allows the text editor to appear when then text field is selected.

You must drag a reference to the Text component into the Text property of the TextEditor in order for the editor to know what text it is editing.

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.
Editor TextEditor A reference to the text editor component.
__text Text Internal - The text for this field.
EditingStarted Action`1<TextEditor> The editing started action.
EditingChanged Action`1<TextEditor> The editing changed action.
EditingFinished Action`1<TextEditor> The editing finished action.
SubmitPressed [[Type:Action`1<TextEditor>|Action`1<TextEditor>]] The submit pressed action.

Usage

This component is useful for forms, user input, and other text based projects.

Examples

Videos

ProbablePrime made a tutorial video on TextFields:

Related Components