You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
279 B
GDScript

extends Control
# Called when the node enters the scene tree for the first time.
func _ready():
$Label.text = "Press me, senpai!"
func _on_Button_pressed():
$Label.text = "HELLO!"
$Timer.stop()
$Timer.start()
func _on_Timer_timeout():
$Label.text = "Press me, senpai!"