allow quitting

This commit is contained in:
mightypanders 2021-06-13 18:04:43 +02:00
parent 8f91f632f4
commit 8d5acbe65c
1 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,8 @@ func _ready():
print(radius_guests) print(radius_guests)
func _physics_process(delta): func _physics_process(delta):
if Input.is_action_just_pressed("ui_cancel"):
get_tree().quit()
pass pass
func _on_GuestTimer_timeout(): func _on_GuestTimer_timeout():