9 lines
106 B
GDScript
9 lines
106 B
GDScript
extends Node3D
|
|
|
|
@export var Text : String;
|
|
|
|
|
|
|
|
func _process(delta: float) -> void:
|
|
$Label3D.text = Text;
|