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

19 lines
No EOL
629 B
Lua

----------------------------------------------------------------
-- 构造体展示厅奖励领取检测
local XRedPointConditionHeadPortraitNew = {}
local Events = nil
function XRedPointConditionHeadPortraitNew.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_HEAD_PORTRAIT_NOTIFY),
XRedPointEventElement.New(XEventId.EVENT_HEAD_PORTRAIT_RESETINFO),
}
return Events
end
function XRedPointConditionHeadPortraitNew.Check()
return XDataCenter.HeadPortraitManager.CheckIsNewHeadPortrait()
end
return XRedPointConditionHeadPortraitNew