PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionWindowsInlay.lua
2022-12-26 14:06:01 +05:30

19 lines
No EOL
570 B
Lua

----------------------------------------------------------------
--新手任务奖励检测
local XRedPointConditionWindowsInlay = {}
local Events = nil
function XRedPointConditionWindowsInlay.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_FUBEN_DAILY_REFRESH),
XRedPointEventElement.New(XEventId.EVENT_MAINUI_ENABLE),
}
return Events
end
function XRedPointConditionWindowsInlay.Check()
return XDataCenter.MarketingActivityManager.IsShowWindowsInlayRedPoint()
end
return XRedPointConditionWindowsInlay