aboutsummaryrefslogtreecommitdiff
path: root/src/helpers/start_light.gd
blob: e8d27d1211796edfefacfcce34d4e7e5173d2d71 (plain)
1
2
3
4
5
6
7
8
extends Timer


func _ready():
	connect("timeout", self, "_wait_timer_callback")

func _wait_timer_callback():
	get_node("../light").fade_timer.start()