Files
Factory47/Objects/Scripts/SLabel.gd
2026-06-04 16:53:41 -05:00

9 lines
106 B
GDScript

extends Node3D
@export var Text : String;
func _process(delta: float) -> void:
$Label3D.text = Text;