mirror of
				https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
				synced 2025-11-04 08:35:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			154 B
		
	
	
	
		
			GDScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			154 B
		
	
	
	
		
			GDScript
		
	
	
		
			Executable File
		
	
	
	
	
extends Node
 | 
						|
 | 
						|
@export var labels: Dictionary[Label, Label] = {}
 | 
						|
 | 
						|
func _process(_delta: float) -> void:
 | 
						|
	for i in labels.keys():
 | 
						|
		labels[i].text = i.text
 |