implement marathon start screen

This commit is contained in:
Haze Weathers 2023-12-30 21:02:39 -05:00
parent 048d63a353
commit db0a61e162
7 changed files with 267 additions and 53 deletions

View file

@ -72,7 +72,7 @@ func _physics_process(delta):
else:
lives_counter.text = str(Game.deaths)
#Life bonus color
if Game.lives == 2:
if Game.deaths == 0:
lives_counter.modulate = bonus_color
else:
lives_counter.modulate = Color.white