You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- extends BaseLevel
-
- func _input(event):
- if event.is_action_pressed("ui_accept") or event.is_action_pressed("ui_cancel"):
- on_interaction()
-
- func _on_Button_pressed():
- on_interaction()
-
- func on_interaction():
- emit_signal("request_new_scene", "TestLVL")
|