feat(UI): 完成UI部分的基本美术优化

This commit is contained in:
2025-10-29 08:13:11 +08:00
parent 958fb65805
commit c674131911
30 changed files with 2576 additions and 136 deletions

View File

@@ -20,8 +20,8 @@ namespace UI
private void OnGet(PlayerWatchModeController watchModeCtrl)
{
watchModeController = watchModeCtrl;
modeText.text = "Mode: " + watchModeController.CurrentWatchMode;
watchModeController.OnEnterWatchMode += mode => modeText.text = "Mode: " + mode;
modeText.text = watchModeController.CurrentWatchMode.ToString();
watchModeController.OnEnterWatchMode += mode => modeText.text = mode.ToString();
}
}
}