Update - 1.9.0.103

EN: 1.9.0.103
CN: 1.9.0.104
JP: 1.9.0.106
KR: 1.9.0.108
This commit is contained in:
SL1900
2026-04-18 00:15:00 +09:00
parent 35fe1f046d
commit e0549005e1
1150 changed files with 941124 additions and 19847 deletions
@@ -205,7 +205,6 @@ function BattlePassBuyLevelCtrl:BuyOrExchangeCoin()
local nNeedCount = self.curCost - nDefaultCount
local sTips1 = orderedFormat(ConfigTable.GetUIText("Recruit_ExchangeGemZero") or "", mapJadeCfgData.Id, nNeedCount, mapCostCfgData.Id)
local confirmCallbackStone = function()
EventManager.Hit("TopRes", false, self.nTopBarId, self.tbCurTabCoin)
local nCurStoneCount = PlayerData.Item:GetItemCountByID(AllEnum.CoinItemId.STONE)
nCurStoneCount = nCurStoneCount + PlayerData.Item:GetItemCountByID(AllEnum.CoinItemId.FREESTONE)
if nCurStoneCount >= nNeedCount then
@@ -221,7 +220,6 @@ function BattlePassBuyLevelCtrl:BuyOrExchangeCoin()
else
local sTips2 = orderedFormat(ConfigTable.GetUIText("Recruit_Charge") or "", mapCostCfgData.Id)
local confirmCallbackExchange = function()
EventManager.Hit("TopRes", false, self.nTopBarId, self.tbCurTabCoin)
EventManager.Hit(EventId.OpenPanel, PanelId.Mall, AllEnum.MallToggle.Gem)
end
ConfirmPanel(sTips2, confirmCallbackExchange)
+1 -6
View File
@@ -207,7 +207,6 @@ function BattlePassCtrl:Refresh()
end
local sTimeStr = PlayerData.BattlePass:GetRefreshTime()
NovaAPI.SetTMPText(self._mapNode.TMPSeasonTImeTitle, orderedFormat(ConfigTable.GetUIText("BattlePass_RemainTimeTitle") or "", sTimeStr))
local mapBattlePassCfgData = ConfigTable.GetData("BattlePass", self.mapBattlePassInfo.nSeasonId)
if mapBattlePassCfgData ~= nil then
local nPackageId = mapBattlePassCfgData.OutfitPackageShowItem
local mapItemCfgData = ConfigTable.GetData_Item(nPackageId)
@@ -389,7 +388,6 @@ function BattlePassCtrl:OnEvent_BattlePassQuestReceive()
mapBefore.nMaxExp = ConfigTable.GetData("BattlePassLevel", self.mapBattlePassInfo.nLevel + 1).Exp
end
local callback = function(mapData)
self.mapBattlePassInfo = mapData
self.mapBattlePassInfo = mapData
local afterLevel = self.mapBattlePassInfo.nLevel
local afterExp = self.mapBattlePassInfo.nExp
@@ -552,9 +550,6 @@ function BattlePassCtrl:OnEvent_BattlePassBuyLevel()
nMaxLevel = -1,
nMaxExp = 0
}
if ConfigTable.GetData("BattlePassLevel", self.mapBattlePassInfo.nLevel + 1) == nil then
mapBefore.nMaxExp = ConfigTable.GetData("BattlePassLevel", self.mapBattlePassInfo.nLevel + 1).Exp
end
local callback = function(mapData)
self.mapBattlePassInfo = mapData
local afterLevel = self.mapBattlePassInfo.nLevel
@@ -624,7 +619,7 @@ function BattlePassCtrl:OnEvent_BattlePassPremiumSuccess()
if self._panel.bOpenPremium then
self.tbShowRewardIdx = {}
if beforeLevel ~= self.mapBattlePassInfo.nLevel then
for i = beforeLevel, self.mapBattlePassInfo.nLevel do
for i = beforeLevel + 1, self.mapBattlePassInfo.nLevel do
if #self.tbShowRewardIdx < 5 then
table.insert(self.tbShowRewardIdx, i)
end
@@ -80,7 +80,6 @@ function BattlePassPremiumBuyCtrl:OpenPanel(nCurType, nSeasonId, nVersion)
self.sLuxuryProductId = mapBattlePassCfgData.LuxuryProductId
self.sComplementaryProductId = mapBattlePassCfgData.ComplementaryProductId
NovaAPI.SetTMPText(self._mapNode.txtBtnbtnBuyPremium, tostring(mapBattlePassCfgData.PremiumShowPrice))
local nSPremiumPrice = nCurType == 0 and mapBattlePassCfgData.LuxuryPrice or mapBattlePassCfgData.ComplementaryPrice
if self.nSeasonId >= 6 then
self:SetPngSprite(self._mapNode.imgBattlePassLogo, "Icon/ArtText/CharSkin_ArtText_" .. mapBattlePassCfgData.Cover .. "_lang")
else
+6 -6
View File
@@ -263,9 +263,7 @@ function SkinPreviewCtrl:LoadCharacter()
self.curShowModel = v
self:WaitReadyClipFinish()
NovaAPI.BindUIParallaxStageCameraControllerModel(self._mapNode.UIParallax3DStage, 0, v.gameObject)
if CS.FrameworkMiscUtils.VersionCompare(CS.ClientManager.Instance:GetClientVersion(), "1.4.0", 2) == 1 then
GameUIUtils.SetCustomModelMaterialVariant(v.gameObject, CS.CustomModelMaterialVariantComponent.VariantNames.FormationView)
end
GameUIUtils.SetCustomModelMaterialVariant(v.gameObject, CS.CustomModelMaterialVariantComponent.VariantNames.FormationView)
else
v.gameObject:SetActive(false)
end
@@ -368,9 +366,11 @@ function SkinPreviewCtrl:OnEnable()
if tbSkinList ~= nil and 0 < #tbSkinList then
self.nSkinId = tbSkinList[1]
end
for _, v in ipairs(tbSkinList) do
local skinData = SkinData.new(v, 0, false)
table.insert(self.tbSkinList, {nId = v, skinData = skinData})
if tbSkinList ~= nil then
for _, v in ipairs(tbSkinList) do
local skinData = SkinData.new(v, 0, false)
table.insert(self.tbSkinList, {nId = v, skinData = skinData})
end
end
self._mapNode.eventSkinZoom:SetZoomLock(true)
self._mapNode.eventSkinZoom:SetZoomLimitValue(tonumber(self.tbZoomRange[1]), tonumber(self.tbZoomRange[2]))