Fixed some more 'UNUSED_ARGUMENT' warnings

This commit is contained in:
Noah 2022-10-28 15:42:31 -05:00
parent fc21c328e4
commit 3c3aa5113d

View File

@ -9,11 +9,11 @@ func _ready():
if type == "alert":
$Label.add_color_override("font_color", Color(255, 0, 0))
func _process(delta):
func _process(_delta):
$Label.text = message
func _on_TTL_timeout():
$AnimationPlayer.play("move_off_screen")
func _on_AnimationPlayer_animation_finished(anim_name):
func _on_AnimationPlayer_animation_finished(_anim_name):
queue_free()