9 lines
189 B
GDScript
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)
|