mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
14 lines
222 B
GDScript
14 lines
222 B
GDScript
tool
|
|
extends MenuButton
|
|
|
|
var popup = get_popup()
|
|
signal item_pressed
|
|
|
|
func _ready():
|
|
popup.connect("id_pressed", self, "id_pressed")
|
|
|
|
func id_pressed(id):
|
|
emit_signal("item_pressed", name, popup.get_item_text(id), id)
|
|
|
|
|