11 lines
219 B
GDScript
11 lines
219 B
GDScript
extends Interaction
|
|
|
|
@onready var juicerInterface:Window = $JuicingMenu
|
|
|
|
func _ready():
|
|
add_action("Juice", open_juicing_window)
|
|
|
|
func open_juicing_window():
|
|
juicerInterface.popup_centered()
|
|
juicerInterface.opened()
|