mirror of
				https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
				synced 2025-11-04 08:35:41 +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()
 |