Initial commit of Escoria-Reloaded. Still a lot of missing stuff.
This commit is contained in:
14
game/ui/ui_9verbs/verbs_menu.gd
Normal file
14
game/ui/ui_9verbs/verbs_menu.gd
Normal file
@@ -0,0 +1,14 @@
|
||||
tool
|
||||
extends Control
|
||||
|
||||
func _ready():
|
||||
for but in $actions.get_children():
|
||||
but.connect("pressed", self, "_on_action_selected", [but.name])
|
||||
but.toggle_mode = true
|
||||
|
||||
func _on_action_selected(action : String):
|
||||
escoria.esc_runner.set_current_action(action)
|
||||
|
||||
for but in $actions.get_children():
|
||||
but.set_pressed(but.get_name() == action)
|
||||
|
||||
Reference in New Issue
Block a user