chore: 初始化游戏项目基础框架与菜单系统

新增了基础菜单抽象类、主题配置、开场与主菜单场景,添加了所需的资源文件与项目配置,完善了项目基础结构
This commit is contained in:
2026-07-30 20:04:31 +08:00
parent e1771bb506
commit 6439b6712b
17 changed files with 521 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
@tool
extends Control
class_name BaseMenu
@export var backgroundColor: Color = Color.WHITE
@onready var backgroundRect: ColorRect = $%background
func _ready() -> void:
backgroundRect.color = backgroundColor