You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
my-bricks/scripts/ui/main_menu.gd

12 lines
274 B

extends Control
## 主菜单:开始 / 退出。
## 按钮点击通过 signal 调用父节点(main.gd)的方法。
signal start_pressed
signal quit_pressed
func _on_start_pressed() -> void:
start_pressed.emit()
func _on_quit_pressed() -> void:
quit_pressed.emit()