1 2 3 4 5 6 7 8 9 10 11 12 13 14
# godot swipe detector A script to detect directional swipes on the screen. ## Usage example ```gdscript func _ready(): add_child(SwipeDetector.new()) func _input(event): if event is InputEventSwipe: print(event.direction) ```