courier/scripts/sign.gd
2024-10-05 14:12:57 -07:00

15 lines
320 B
GDScript

extends Area2D
@export var text : String
@export var Dialogue : Control
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
Dialogue.DialogueLabel.text = text
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass