選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
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")