Merge pull request #196 from Excello-Recherche-Education/fireworks-colors

New colors for fireworks for minigames
This commit is contained in:
Adrien Ufferte
2026-01-20 14:23:23 +01:00
committed by GitHub
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -83,6 +83,7 @@ func _find_stimuli_and_distractions() -> void:
func _start() -> void:
super()
fireworks.set_colors([Color("#ffd366"), Color("#ffbf94"), Color("#f5a8c8")])
_on_current_progression_changed()
sentence_background.show()
+1
View File
@@ -28,6 +28,7 @@ func _setup_word_progression() -> void:
func _start() -> void:
super()
fireworks.set_colors([Color("#bca4ff"), Color("#f5a8c8"), Color("#ffbf94")])
frog.last_valid_position = frog.global_position
@@ -74,6 +74,7 @@ func _find_stimuli_and_distractions() -> void:
# Launch the minigame
func _start() -> void:
super()
fireworks.set_colors([Color("#bca4ff"), Color("#f5a8c8"), Color("#7fc8ff")])
if stimuli.is_empty():
Log.error("PenguinMinigame: Cannot start game because stimuli is empty")
_win()