mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
13 lines
252 B
GDScript
Executable File
13 lines
252 B
GDScript
Executable File
class_name TimerStarter
|
|
extends Node
|
|
|
|
func _ready() -> void:
|
|
if Global.level_editor != null:
|
|
Global.level_editor.level_start.connect(start_timers)
|
|
start_timers()
|
|
|
|
func start_timers() -> void:
|
|
for i in get_children():
|
|
if i is Timer:
|
|
i.start()
|