【主角修为】图标顺序调整

dev_chengFeng
ZhangBiao 2021-10-22 09:26:09 +08:00
parent 9e0ca64dbd
commit 2ab4be658d
2 changed files with 10 additions and 8 deletions

View File

@ -1379,12 +1379,14 @@ end
--新百宝商会红点检测
function this.TreasureStoreSeason2RedCheck()
local data = CommonActPageManager.GetData(ActivityTypeDef.TreasureStoreSeason2)
for i = 1, #data.FreelyData do
for j = 1, #data.FreelyData[i] do
local data = data.FreelyData[i][j]
if data.progress == 1 and data.Price == 0 then
return true
if ActivityGiftManager.IsActivityTypeOpen(ActivityTypeDef.TreasureStoreSeason2) then
local data = CommonActPageManager.GetData(ActivityTypeDef.TreasureStoreSeason2)
for i = 1, #data.FreelyData do
for j = 1, #data.FreelyData[i] do
local data = data.FreelyData[i][j]
if data.progress == 1 and data.Price == 0 then
return true
end
end
end
end

View File

@ -1,8 +1,8 @@
require("Base/BasePanel")
local Cultivation = Inherit(BasePanel)
local IMAGE = {
[1] = "r_hero_jinengdian02",
[2] = "r_hero_jinengdian04",
[1] = "r_hero_jinengdian04",
[2] = "r_hero_jinengdian02",
[3] = "r_hero_jinengdian03",
[4] = "r_hero_jinengdian01",
}