summaryrefslogtreecommitdiff
path: root/Scripts/ModifierLabel.gd
blob: 1a2ed2eb88e8558302671c38c9320042a5099050 (plain)
1
2
3
4
5
6
7
8
9
extends Label

func pop(txt : String):
	visible = true
	text = txt
	$"Timer".start()

func _on_timer_timeout():
	visible = false