fix:修改静态数据到gamelocal里

This commit is contained in:
bzx
2026-01-15 11:48:14 +08:00
parent 359da6b32c
commit 96083a79e1
5 changed files with 21 additions and 15 deletions

View File

@@ -261,12 +261,12 @@ public class HttpServer : MonoBehaviour
private int GetGameTotalTime()
{
return Mathf.FloorToInt(GameManager.Ins.vistAllTime); // 举例1 小时(秒)
return Mathf.FloorToInt(GameLocal.Ins.vistAllTime); // 举例1 小时(秒)
}
private int GetCurrentPlayTime()
{
return GameManager.Ins.GetNowTime();
return GameLocal.Ins.GetNowTime();
}