Add stub for detecting touchscreen events.

This commit is contained in:
Nolan Darilek 2019-12-27 11:19:49 -06:00
parent 9051f381fe
commit b5a83e1c25

View File

@ -75,3 +75,7 @@ func _enter_tree():
focus_restore_timer.connect("timeout", self, "restore_focus")
add_child(focus_restore_timer)
get_tree().connect("node_added", self, "augment_tree")
func _input(event):
if event is InputEventScreenTouch:
pass