This commit is contained in:
2025-10-09 11:54:18 +08:00
parent 2aeeaf7659
commit 34f977047d
33 changed files with 181 additions and 152 deletions

View File

@@ -4,6 +4,7 @@ using UnityEngine;
public class GameSystem : Singleton<GameSystem>
{
public NetWorkThirdCharacterController localPlayer;
public void Init()
{
UIManager.Inst.Init();
@@ -11,4 +12,11 @@ public class GameSystem : Singleton<GameSystem>
GraphicsManager.Inst.Init();
AudioManager.Inst.Init();
}
public void UpdateCursorState(bool value)
{
if (localPlayer != null)
{
localPlayer.UpdateCursorState(value);
}
}
}