增加怪物功能,调整灵灯参数

This commit is contained in:
2026-07-03 16:06:18 +08:00
parent e75868832f
commit 6e414a3022
46 changed files with 5907 additions and 300 deletions
+5 -2
View File
@@ -4,11 +4,14 @@ using UnityEngine.UI;
namespace GameFramework
{
/// <summary>
/// 主菜单 UI 控制器。
/// 绑定三个按钮:开始游戏(异步加载)、设置(占位面板)、退出游戏
/// 主菜单 UI 控制器(游戏封面)
/// 包含游戏标题 + 开始/设置/退出按钮
/// </summary>
public class MainMenuUIController : MonoBehaviour
{
[Header("标题")]
[SerializeField] Text titleText;
[Header("Buttons")]
[SerializeField] Button startButton;
[SerializeField] Button settingsButton;