Show user typing on screen

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By titanlock
:warning: Old Version Published before Godot 3 was released.

I’m trying to make a game that has a terminal (unix like) but I can’t seem to figure out how I can get the users input to show up on screen. I feel like it is something easy but I am still new to Godot and it’s API, but I couldn’t seem to find anything.

Any help would be appreciated.

:bust_in_silhouette: Reply From: YeOldeDM

You have two nodes you can use –LineEdit and TextEdit– that allow for user text input. These have signals for when text is entered/edited, or you can access the node’s text with the get_text() method.

Thanks for the response this seems to be what I am looking for.

titanlock | 2017-08-08 22:45