|
@@ -17,6 +17,7 @@ func show_game_over():
|
|
|
$MessageLabel.show()
|
|
|
yield(get_tree().create_timer(1.0), "timeout")
|
|
|
$StartButton.show()
|
|
|
+ $ColorButton.show()
|
|
|
|
|
|
func update_score(score):
|
|
|
$ScoreLabel.text = str(score)
|
|
@@ -28,4 +29,5 @@ func _on_MessageTimer_timeout():
|
|
|
|
|
|
func _on_StartButton_pressed():
|
|
|
$StartButton.hide()
|
|
|
+ $ColorButton.hide()
|
|
|
emit_signal("start_game")
|