ProtoFlux:Text Editor Events

From Resonite Wiki
Revision as of 23:52, 18 April 2024 by AmasterAmaster (talk | contribs) (Created a page for the Text Editor Events node.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Text Editor Events
EditingStarted
EditingChanged
EditingFinished
SubmitPressed
Editor
null
UI

The Text Editor Events node takes in a global TextEditor reference and will listen for events from that global reference. This node fires events that relate to the TextEditor, and can be useful when you want certain things to happen when things get edited or submitted by the user.

Outputs

EditingStarted (Continuation)

Fires when the editing has started (After the editor is focused).

EditingChanged (Continuation)

Fires after every change during the editing.

EditingFinished (Continuation)

Fires when the editing finishes (before the editor loses focus).

SubmitPressed (Continuation)

Fires When the user submits the changes for the editor (called before EditingFinished gets fired).

Globals

Editor (TextEditor)

The TextEditor to listen from.