PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionSTRoleLevelUp.lua

11 lines
400 B
Lua
Raw Normal View History

2022-12-26 14:06:01 +05:30
local XRedPointConditionSTRoleLevelUp = {}
function XRedPointConditionSTRoleLevelUp.Check(roleId)
local superTowerManager = XDataCenter.SuperTowerManager
-- 活动没开启不处理
if superTowerManager.GetIsEnd() then return false end
return XDataCenter.SuperTowerManager.GetRoleManager()
:CheckRolesSuperLevelUpShowRedDot(roleId)
end
return XRedPointConditionSTRoleLevelUp