Skip to content

Commit

Permalink
[CN UPDATE] Client:2.2.61 Data:24-04-30-14-20-51-275ddf
Browse files Browse the repository at this point in the history
  • Loading branch information
MuelsyseBot_v1 committed May 1, 2024
1 parent 935e1c5 commit e52a6dc
Show file tree
Hide file tree
Showing 196 changed files with 399,972 additions and 90,841 deletions.
2 changes: 1 addition & 1 deletion zh_CN/gamedata/[uc]lua/GlobalConfig.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GlobalConfig =
{
CUR_FUNC_VER = "V049",
CUR_FUNC_VER = "V050",
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ function WardrobeSkinGroupDetailState:OnResume()
self:Render()
end

function WardrobeSkinGroupDetailState:OnClose()

self._wrappedViewPager:ClearFunc()
end

function WardrobeSkinGroupDetailState:_RenderCheck(data)
for k,v in pairs(data.skinList) do
if (WardrobeUtil.CheckSkinOnSale(v)) then
Expand Down Expand Up @@ -69,19 +74,16 @@ function WardrobeSkinGroupDetailState:CheckData(data)
for k,kvImgInfo in pairs(data.data.kvImgIdList) do
local publishTime = skinGroupTimeRef[kvImgInfo.linkedSkinGroupId]
if publishTime < currentTime then
local sprite = CS.Torappu.UI.Wardrobe.WardrobeKVSpriteLoader.LoadSpriteFromHubStatic(kvImgInfo.kvImgId, CS.Torappu.ResourceUrls.GetSkinKvHubPath())
table.insert(spriteList,sprite)
table.insert(spriteList,kvImgInfo.kvImgId)
end
end
local sprite = CS.Torappu.UI.Wardrobe.WardrobeKVSpriteLoader.LoadSpriteFromHubStatic(string.format("default_kv_%s",data.data.brandId),CS.Torappu.ResourceUrls.GetSkinKvHubPath())
if (sprite ~= nil) then
table.insert(spriteList,sprite)
end
table.insert(spriteList,string.format("default_kv_%s",data.data.brandId))
local pos = self._content.anchoredPosition
pos.y = 0
self._content.anchoredPosition = pos
self._triEffect:ToInitScale()
self._wrappedViewPager:InitRender(spriteList)
self.spriteList = spriteList
self._wrappedViewPager:InitRenderFunc(spriteList,CS.Torappu.ResourceUrls.GetSkinKvHubPath())
end

function WardrobeSkinGroupDetailState:GetTransInfo()
Expand Down
2 changes: 0 additions & 2 deletions zh_CN/gamedata/[uc]lua/hotfixes/DefinedFix.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ local list =
{

"HotFixes/TestStubHotfixer",
"HotFixes/SandboxCatchedAnimalManagerHotfixer",
"HotFixes/HomeThemeTrackPointHotfixer"
};

return list;
Loading

0 comments on commit e52a6dc

Please sign in to comment.