9 lines
193 B
GDScript
9 lines
193 B
GDScript
extends Button
|
|
|
|
@export var constructible : Constructible
|
|
|
|
func _ready() -> void:
|
|
icon = constructible.preview
|
|
|
|
func _pressed() -> void:
|
|
GuiEventBus.construction_selected.emit(constructible)
|