mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-22 11:55:56 +00:00
Add stub for detecting touchscreen events.
This commit is contained in:
parent
9051f381fe
commit
b5a83e1c25
|
@ -75,3 +75,7 @@ func _enter_tree():
|
||||||
focus_restore_timer.connect("timeout", self, "restore_focus")
|
focus_restore_timer.connect("timeout", self, "restore_focus")
|
||||||
add_child(focus_restore_timer)
|
add_child(focus_restore_timer)
|
||||||
get_tree().connect("node_added", self, "augment_tree")
|
get_tree().connect("node_added", self, "augment_tree")
|
||||||
|
|
||||||
|
func _input(event):
|
||||||
|
if event is InputEventScreenTouch:
|
||||||
|
pass
|
||||||
|
|
Loading…
Reference in New Issue
Block a user