feat: sound for intro
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 8s
Create tag and build when new code gets to main / Export (push) Successful in 2m19s

This commit is contained in:
2025-06-28 13:02:47 +02:00
parent e6da2f34e6
commit f365450590
5 changed files with 58 additions and 6 deletions

View File

@ -21,7 +21,6 @@ var text_showing = false
func _ready() -> void:
text_split = message.text.split("---")
text_fine_split = text_split[2].split(" ")
print(len(text_fine_split))
message.text = ""
accept_button_1.visible = false
@ -34,7 +33,6 @@ func _on_start_connexion_timeout() -> void:
message.text = text_split[0]
further_connexion.start()
func _on_further_connexion_timeout() -> void:
message.text = text_split[1]
text_start.start()
@ -43,9 +41,9 @@ func _on_text_start_timeout() -> void:
message.text = ""
time_between_words.start()
func _on_time_between_words_timeout() -> void:
if text_fine_split.is_empty():
time_between_words.stop()
time_before_show_buttons.start()
return