TEXT how to node

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

Hi!
Does anyone has Text edit, input edit project example, please? I cant figure out how to make texts and dialogs on Godot…

:bust_in_silhouette: Reply From: Ertain

There is a way to do GUI elements. You can add Label nodes and set them wherever you want. For example, here’s a little tutorial on using rich text in your app.

Here’s another way to add in a field that you can edit. In your node tree, add a Panel node, then add a TextEdit node. Here’s something I whipped up in a couple of seconds:

Nice textbox

And here’s the accompanying node tree:

enter image description here

Hope that helps.