2023-07-14 19:35:33 +00:00
|
|
|
|
|
|
|
|
|
local XUiReviewActivityGridCollection = XClass(nil, "XUiReviewActivityGridCollection")
|
|
|
|
|
|
|
|
|
|
function XUiReviewActivityGridCollection:Ctor(ui)
|
|
|
|
|
XTool.InitUiObjectByUi(self, ui)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function XUiReviewActivityGridCollection:RefreshData(id)
|
|
|
|
|
self.Id = id
|
|
|
|
|
local data = XDataCenter.MedalManager.GetScoreTitleById(id)
|
|
|
|
|
if data.MedalImg ~= nil then
|
|
|
|
|
self.ImgCollectionIcon:SetRawImage(data.MedalImg)
|
|
|
|
|
end
|
|
|
|
|
self.TxtCollectionName.text = data.Name
|
|
|
|
|
end
|
|
|
|
|
|
2024-09-01 20:49:41 +00:00
|
|
|
|
function XUiReviewActivityGridCollection:PlayEnableAnime(index) --该index是当前使用的grid中的序号,不是总grid里的动态列表组件上的属性的index,etc:共10个gird,若只显示最后5个且该格子是第10个的话,参数Index就是5
|
|
|
|
|
self.GameObject:SetActive(false)
|
|
|
|
|
XScheduleManager.ScheduleOnce(function()
|
|
|
|
|
if not XTool.UObjIsNil(self.Transform) then
|
|
|
|
|
self.GameObject:SetActive(true)
|
|
|
|
|
self.Transform:Find("Animation/GridMedalEnable"):PlayTimelineAnimation(function ()
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
end, (index) * 95)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
2023-07-14 19:35:33 +00:00
|
|
|
|
return XUiReviewActivityGridCollection
|