Fully working menu system

This commit is contained in:
2ndbeam 2024-05-18 12:37:36 +03:00
commit 6eef2c781c
11 changed files with 93 additions and 9 deletions

View file

@ -0,0 +1,12 @@
extends Button
class_name MenuAction
func _init():
get_tree().create_timer(0.05).timeout.connect(_ready)
func _ready():
button_up.connect(action)
func action():
pass