Update - 1.5.0.80

EN: 1.5.0.80
CN: 1.5.0.82
JP: 1.5.0.84
KR: 1.5.0.87
This commit is contained in:
SL1900
2026-01-20 18:00:00 +09:00
parent 235fee6915
commit 999664ac13
127 changed files with 484147 additions and 211 deletions
+8 -3
View File
@@ -102,6 +102,7 @@ function SkillBtnCtrl:Awake()
self:SetActionLayout()
self:SetCDTextSize()
self._mapNode.fx_tip:SetActive(false)
self.bChargeLoading_CurrentIsActive = false
end
function SkillBtnCtrl:InitSkillBtn(EET, icon, bShowSection, charId, actionId, bIsSupportChar)
self:SetMainAlpha(true)
@@ -249,8 +250,12 @@ function SkillBtnCtrl:SetCD(percent, second, bBeginResume)
NovaAPI.SetTMPSourceText(self._mapNode.TMP_CD, string.format("%.1f", second))
end
self._mapNode.TMP_CD.transform.localScale = bBeginResume == true and Vector3.one or Vector3.zero
self._mapNode.Charge_Max_glow:SetActive(self.bInCD and not self.bInCharge)
self._mapNode.Transform_ChargeLoading.gameObject:SetActive(self.bInCD and not self.bInCharge)
local bTargetIsActive = self.bInCD and not self.bInCharge
if self.bChargeLoading_CurrentIsActive ~= bTargetIsActive then
self.bChargeLoading_CurrentIsActive = bTargetIsActive
self._mapNode.Charge_Max_glow:SetActive(self.bChargeLoading_CurrentIsActive)
self._mapNode.Transform_ChargeLoading.gameObject:SetActive(self.bChargeLoading_CurrentIsActive)
end
end
function SkillBtnCtrl:SetCharge(percent, second)
if second == 0 and self.ActionId ~= SKILL_ULTRA then
@@ -278,7 +283,7 @@ function SkillBtnCtrl:SetCharge(percent, second)
NovaAPI.SetImageFillAmount(self._mapNode.imageChargeLoading[2], percent)
NovaAPI.SetTMPSourceText(self._mapNode.TMP_Charge, tostring(math.floor(second)))
end
function SkillBtnCtrl:SetForbidden(bForbidden, bAvailable)
function SkillBtnCtrl:SetForbidden(bForbidden)
self._mapNode.transformX.localScale = bForbidden == true and Vector3.one or Vector3.zero
end
function SkillBtnCtrl:OpenUltraSpecialFX(mTmpActionPosId, isShow)