trench/elements/entities/statue/statue.gd
saarsena@gmail.com c2bb3893a9 initial commit
2026-04-22 10:19:57 -04:00

13 lines
No EOL
280 B
GDScript

extends Node3D
signal interacted(description: String)
@export var description: String = "With a close eye you notice the once red hue of the faded statue before you."
func _ready() -> void:
add_to_group("interactable")
func interact() -> void:
interacted.emit(description)