配置问题调整,调整检测数值

This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-26 15:06:04 +08:00
parent 1749191071
commit 26a987c08a

View File

@ -66,7 +66,10 @@ namespace GameLogic
base.OnCreate();
timerId = GameModule.Timer.AddTimer(TimerHandler, 0.01f, true);
if (timerId == -1)
{
timerId = GameModule.Timer.AddTimer(TimerHandler, 0.1f, true);
}
}
protected override void OnDestroy()
@ -167,6 +170,7 @@ namespace GameLogic
{
// 最终结果值 = 初始推力+玩家数量 + 永久增加推力值
m_AddPush = EventConts.InitPower + (m_ListUnitPlayDatas.Count * EventConts.PlayerScale) + m_AllAddPush;
//Log.Debug(EventConts.InitPower + (m_ListUnitPlayDatas.Count * EventConts.PlayerScale));
foreach (var item in m_Buffs)
{