From 8a7ce09aa9003d7eb7a6220c1f0a79da0168478d Mon Sep 17 00:00:00 2001 From: ZhangBiao Date: Tue, 2 Nov 2021 17:45:18 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=B1=B1=E6=B2=B3=E7=A4=BE=E7=A8=B7?= =?UTF-8?q?=E5=9B=BE=E3=80=91=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/FightLevel/FightLevelSingleChapterPanel.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelSingleChapterPanel.lua b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelSingleChapterPanel.lua index aad6a2a8dc..5b00320dbc 100644 --- a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelSingleChapterPanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelSingleChapterPanel.lua @@ -366,11 +366,13 @@ function this.LeftOrRightBtnClickEvent(index) if index and index == 1 and canLeft then--左 chapterId = upChapterId chapterData = upChapterData + FightLevelManager.curSelect = FightLevelManager.curSelect - 1 this.OnShowPanel() this.LeftOrRightBtnClickEvent() elseif index and index == 2 and canRight then--右 chapterId = downChapterId chapterData = downChapterData + FightLevelManager.curSelect = FightLevelManager.curSelect + 1 this.OnShowPanel() this.LeftOrRightBtnClickEvent() end