Fixed some more 'UNUSED_ARGUMENT' warnings
This commit is contained in:
parent
fc21c328e4
commit
3c3aa5113d
@ -9,11 +9,11 @@ func _ready():
|
|||||||
if type == "alert":
|
if type == "alert":
|
||||||
$Label.add_color_override("font_color", Color(255, 0, 0))
|
$Label.add_color_override("font_color", Color(255, 0, 0))
|
||||||
|
|
||||||
func _process(delta):
|
func _process(_delta):
|
||||||
$Label.text = message
|
$Label.text = message
|
||||||
|
|
||||||
func _on_TTL_timeout():
|
func _on_TTL_timeout():
|
||||||
$AnimationPlayer.play("move_off_screen")
|
$AnimationPlayer.play("move_off_screen")
|
||||||
|
|
||||||
func _on_AnimationPlayer_animation_finished(anim_name):
|
func _on_AnimationPlayer_animation_finished(_anim_name):
|
||||||
queue_free()
|
queue_free()
|
||||||
|
Loading…
Reference in New Issue
Block a user