delurbelako/scripts/gui/construction_button.gd
2025-10-11 13:29:41 +05:00

9 lines
189 B
GDScript

extends Button
@export var constructible : Prototype
func _ready() -> void:
icon = constructible.preview
func _pressed() -> void:
GuiEventBus.construction_selected.emit(constructible)