Add first background music, always move focus back to the command line

This commit is contained in:
blinry 2021-02-04 16:11:56 +01:00
parent 13dc516edf
commit b9b32c66e4
11 changed files with 90 additions and 17 deletions

View file

@ -63,3 +63,12 @@ func reload():
func toggle_music():
var music = game.find_node("Music")
if music.volume_db > -20:
music.volume_db -= 100
else:
music.volume_db += 100