added popup showing currently playing song
This commit is contained in:
parent
d23567a0da
commit
a5d847abfd
11 changed files with 82 additions and 1 deletions
|
@ -13,6 +13,7 @@ onready var lives_counter = $LivesCounter
|
|||
onready var high_counter = $HighCounter
|
||||
onready var time_counter = $TimeCounter
|
||||
|
||||
export var song_name = "@Rumble"
|
||||
export (Color) var bonus_color
|
||||
|
||||
func _ready():
|
||||
|
@ -22,6 +23,8 @@ func _ready():
|
|||
$LivesHead.visible = true
|
||||
else:
|
||||
$DeathsHead.visible = true
|
||||
#Change text to song name
|
||||
$Music.text = song_name
|
||||
|
||||
func _physics_process(delta):
|
||||
#Gold Counter
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue