Super-Mario-Bros-Remastered.../Scripts/Parts/LabelTextCopier.gd
2025-09-13 16:30:32 +01:00

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