11 lines
214 B
GDScript
11 lines
214 B
GDScript
extends Interaction
|
|
|
|
@onready var dryingInterface:Window = $DryingMenu
|
|
|
|
func _ready():
|
|
add_action("Dry", open_drying_window)
|
|
|
|
func open_drying_window():
|
|
dryingInterface.popup_centered()
|
|
dryingInterface.opened()
|