fix:修改传输总时间

This commit is contained in:
bzx
2026-01-14 17:39:01 +08:00
parent 9ba6db4009
commit 4b74fba3d4
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ public class HttpServer : MonoBehaviour
private int GetGameTotalTime()
{
return Mathf.FloorToInt(GameInit.Ins.vistEnd); // 举例1 小时(秒)
return Mathf.FloorToInt(GameInit.Ins.vistAllTime); // 举例1 小时(秒)
}
private int GetCurrentPlayTime()

View File

@ -44,7 +44,7 @@ namespace DinosaurAge
public long vistEnd = 0;
// 总游玩时长
private int vistAllTime = (int)(60 * 10f);
public int vistAllTime = (int)(60 * 10f);
public float curTime;