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 -1
View File
@@ -66,7 +66,14 @@ function MainBattleMenuCtrl:OnBtn_FullMap()
AdventureModuleHelper.SetMapCameraActive(false)
end
end
function MainBattleMenuCtrl:OnEvent_InputEnable(bEnable)
function MainBattleMenuCtrl:OnEvent_InputEnable(bEnable, bEnableByTrans)
if bEnableByTrans == true then
if bEnable == true and self.ENABLE == false then
return
end
else
self.ENABLE = bEnable
end
NovaAPI.SetCanvasGroupAlpha(self._mapNode.canvas_group, bEnable == true and 1 or 0)
NovaAPI.SetCanvasGroupInteractable(self._mapNode.canvas_group, bEnable == true)
NovaAPI.SetCanvasGroupBlocksRaycasts(self._mapNode.canvas_group, bEnable == true)