Update - 1.9.0.107

EN: 1.9.0.107
CN: 1.9.0.108
JP: 1.9.0.112
KR: 1.9.0.112
This commit is contained in:
SL1900
2026-05-14 16:00:00 +09:00
parent 4b880806ef
commit eafd8f4088
1034 changed files with 809589 additions and 23067 deletions
@@ -33,12 +33,14 @@ SkillInstancePauseCtrl._mapNodeConfig = {
btnGiveUp = {
sComponentName = "NaviButton",
callback = "OnBtnClick_GiveUp",
sAction = "Giveup"
sAction = "Giveup",
sActionIconType = "Dark"
},
btnBack = {
sComponentName = "NaviButton",
callback = "OnBtnClick_Close",
sAction = "Back"
sAction = "Back",
sActionIconType = "Dark"
},
btnSettings = {
sComponentName = "NaviButton",
@@ -176,7 +176,7 @@ function SkillInstanceShelockHpBar:OnGridRefresh(goGrid, gridIndex)
local nBuffId = self.buffList[index].nId
local config = ConfigTable.GetData_Buff(nBuffId)
local nBuffNum = self.buffList[index].nNum
local nLeftTime = self.buffList[index].bnLeftTime
local nLeftTime = self.buffList[index].nLeftTime
NovaAPI.SetTMPText(txtCount, nBuffNum)
end
function SkillInstanceShelockHpBar:PlayTweenHp(hp, hpMax)
@@ -410,10 +410,7 @@ function SkillInstanceShelockHpBar:OnEvent_ToughnessShowStateChanged(bShow)
end
end
function SkillInstanceShelockHpBar:OnEvent_Deaded()
local wait = function()
self:CloseUI()
end
self:AddTimer(1, 1.6, self, wait, true, true, nil, nil)
self:AddTimer(1, 1.6, "CloseUI", true, true, nil, nil)
end
function SkillInstanceShelockHpBar:OpenUI(bossId, nDataId, parent)
self.bossId = bossId
@@ -546,7 +543,7 @@ end
function SkillInstanceShelockHpBar:CloseUI()
NovaAPI.SetCanvasGroupAlpha(self._mapNode.BossCanvasGroup, 1)
self.bossHUDAnimTweener = Sequence()
self.bossHUDAnimTweener:Append(self._mapNode.BossCanvasGroup.DOFade(0, 0.5))
self.bossHUDAnimTweener:Append(self._mapNode.BossCanvasGroup:DOFade(0, 0.5))
self.bossHUDAnimTweener:OnComplete(function()
NovaAPI.SetComponentEnable(self._mapNode.BossCanvas, false)
end)