Im trying to make simple app where i click on button. (android) mobile keyboard shows up and then i edit label with it.
Im trying to do it this way but I cant get this to work.
func _on_button_pressed:
OS.show_virtual_keyboard(text)
func _process(delta):
get_node("label").set_text(text)
How to do this properly?