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
+13
View File
@@ -161,6 +161,10 @@ CharSkillCtrl._mapNodeConfig = {
btnSwitch2_off = {
sComponentName = "UIButton",
callback = "OnEvent_SetSimpleDesc"
},
btEnergyEff = {
sComponentName = "UIButton",
callback = "OnBtnClick_ShowEnergyEff"
}
}
CharSkillCtrl._mapEventConfig = {
@@ -483,4 +487,13 @@ function CharSkillCtrl:OnEvent_SetDesc()
PlayerCharData:SetCharPanelSkillDescType(false)
self:SetUpgrade()
end
function CharSkillCtrl:OnBtnClick_ShowEnergyEff(btn)
if self.nCharId ~= nil then
local mapData = {
nCharId = self.nCharId,
bCharSkillEnergyEff = true
}
EventManager.Hit(EventId.OpenPanel, PanelId.SkillTips, btn.transform, mapData)
end
end
return CharSkillCtrl