Update - 1.13.0.124

EN: 1.13.0.124
CN: 1.13.0.124
JP: 1.13.0.128
KR: 1.13.0.130
This commit is contained in:
SL1900
2026-07-21 12:30:00 +09:00
parent a12087abad
commit 8c4bd41668
1334 changed files with 873026 additions and 95164 deletions
+8 -2
View File
@@ -98,7 +98,7 @@ function TransitionCtrl:_Out(sEventFrom, callback)
printLog("[转场]正常开幕(" .. sEventFrom .. "),落幕 anim doneframeCount: " .. sFrameCount)
self:_MarkCallback(callback, false)
self:CloseTransition()
EventManager.Hit("InputEnable", false)
EventManager.Hit("InputEnable", false, true)
elseif self._panel:GetTransitionStatus() == AllEnum.TransitionStatus.IsPlayingOutAnim then
printLog("[转场]重复开幕(" .. sEventFrom .. "),开幕 anim playingframeCount: " .. sFrameCount)
self:_MarkCallback(callback, false)
@@ -203,7 +203,7 @@ function TransitionCtrl:OnTimer_AnimDone(timer, bIn)
self.animStyle = nil
self.nType = nil
self._mapNode.TransitionRoot.localScale = Vector3.zero
EventManager.Hit("InputEnable", true)
EventManager.Hit("InputEnable", true, true)
self:_DoCallback(bIn)
EventManager.Hit(EventId.TransAnimOutClear)
EventManager.Hit(EventId.BlockInput, false)
@@ -321,4 +321,10 @@ function TransitionCtrl:Set_22(goStyle, nParam)
local showImage = tbImage[self.nStarTowerImgIndex]
showImage.gameObject:SetActive(true)
end
function TransitionCtrl:Set_53(goStyle, nParam)
local normalChess = goStyle.transform:Find("Chess/NormalChess")
local harChess = goStyle.transform:Find("Chess/HarChess")
normalChess.gameObject:SetActive(nParam == 10101)
harChess.gameObject:SetActive(nParam == 10201)
end
return TransitionCtrl