How do I display the cursor?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Tort

Hey. When you start the game, you have to click with the mouse in the text input window. How to make a window always active without a mouse, using a script?

:bust_in_silhouette: Reply From: exuin
extends TextEdit

func _ready():
    grab_focus()

As long as the player doesn’t click away from the TextEdit, it will be in focus.