2023-07-14 19:35:33 +00:00
|
|
|
--肉鸽红点
|
|
|
|
local XRedPointConditionTheatreAllRedPoint = {}
|
|
|
|
local SubCondition = nil
|
|
|
|
function XRedPointConditionTheatreAllRedPoint.GetSubConditions()
|
|
|
|
SubCondition =
|
|
|
|
SubCondition or
|
|
|
|
{
|
|
|
|
XRedPointConditions.Types.CONDITION_THEATRE_TASK_REWARD_RED_POINT
|
|
|
|
}
|
|
|
|
return SubCondition
|
|
|
|
end
|
|
|
|
|
|
|
|
function XRedPointConditionTheatreAllRedPoint.Check()
|
|
|
|
if XRedPointConditionTheatreTaskRewardRedPoint.Check() then
|
|
|
|
return true
|
|
|
|
end
|
2024-09-01 20:49:41 +00:00
|
|
|
if XDataCenter.TheatreManager.CheckSPModeRedPoint() then
|
|
|
|
return true
|
|
|
|
end
|
2023-07-14 19:35:33 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return XRedPointConditionTheatreAllRedPoint
|