mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-12-15 15:30:21 -08:00
7 lines
154 B
GDScript
Executable file
7 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
|