剧情跳过修改提交

dev_chengFeng
jiaoyangna 2021-06-05 11:04:28 +08:00
parent 7118f60b9c
commit b5dda1e81c
1 changed files with 6 additions and 1 deletions

View File

@ -224,7 +224,7 @@ function this:CheckTrigger(data,go)
this:RunMap(data.eventType)
elseif data.eventType == 3 then
this.eventIndex = 0
--PopupTipPanel.ShowTip("进入一场假战斗")
PopupTipPanel.ShowTip("进入一场假战斗")
this:EnterFight()
elseif data.eventType == 4 then --符咒闪烁了一下
this.eventIndex = 0
@ -398,6 +398,9 @@ function this:CheckTrigger(data,go)
this.btnSkipBtnComp.enabled = false
Timer.New(function()
this.btnSkipBtnComp.enabled = true
if UIManager.IsOpen(UIName.BattlePanel) then
return
end
this:StackPop()
end,data.groups[1],1,false):Start()
elseif data.eventType == 10 then --保持某方向移动
@ -474,6 +477,8 @@ function this:EnterFight()
maxRound = 20,
}
UIManager.OpenPanel(UIName.BattlePanel, testFightData, BATTLE_TYPE.Test,function()
LogGreen("战斗结束进入下一步")
PopupTipPanel.ShowTip("战斗结束进入下一步")
this:StackPop()
end,nil,true)
end