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.
 
 

12 lines
255 B

  1. extends BaseLevel
  2. func _input(event):
  3. if event.is_action_pressed("ui_accept") or event.is_action_pressed("ui_cancel"):
  4. on_interaction()
  5. func _on_Button_pressed():
  6. on_interaction()
  7. func on_interaction():
  8. emit_signal("request_new_scene", "TestLVL")