This commit is contained in:
2025-10-09 07:51:05 +08:00
parent 3ea4257e2d
commit 2aeeaf7659
24 changed files with 3460 additions and 3026 deletions

View File

@@ -115,13 +115,13 @@ public class ThirdCharacterController : MonoBehaviour
{
isCursorLocked = !isCursorLocked;
UpdateCursorState();
if (GameSystem.Inst.UI.CheckShow(nameof(SettingsWindow)))
if (UIManager.Inst.CheckShow(nameof(SettingsWindow)))
{
GameSystem.Inst.UI.HideWindow(nameof(SettingsWindow));
UIManager.Inst.HideWindow(nameof(SettingsWindow));
}
else
{
GameSystem.Inst.UI.ShowWindow<SettingsWindow>(nameof(SettingsWindow));
UIManager.Inst.ShowWindow<SettingsWindow>(nameof(SettingsWindow));
}
}
}