From c6c336408130b7ce6387315877521dcf7f567287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20H=C3=BCbner?= Date: Fri, 21 Sep 2018 04:24:20 +0200 Subject: [PATCH] for now, delete questions --- ui/dialog_box.gd | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ui/dialog_box.gd b/ui/dialog_box.gd index 70c762b..435fdc0 100644 --- a/ui/dialog_box.gd +++ b/ui/dialog_box.gd @@ -344,22 +344,6 @@ func _set_speaker_voice(voice_sample): func _set_speaker_expression(speaker, expression): emit_signal("on_speaker_expression_changed", speaker, expression) -# temporary maybe - -func _setup_question(new_question): - body_container.add_child(new_question) - current_dialog_controller.waiting_for_answer = true - -func _question_answered_yes(qs): - body_container.remove_child(qs) - current_dialog_controller.waiting_for_answer = false - current_dialog_controller._advance_dialog() - -func _question_answered_no(qs): - body_container.remove_child(qs) - current_dialog_controller.waiting_for_answer = false - exit_frame() - func _choice_made(choice_modal, choice): if IS_DEBUG: print("chose: ", choice.get_choice()) # Game.add_history_entry("you", choice.get_choice())