【剧情】修复连续跳过导致卡死的问题
parent
9a6f978eee
commit
0e85d88c21
|
@ -55,11 +55,13 @@ end
|
||||||
--绑定事件(用于子类重写)
|
--绑定事件(用于子类重写)
|
||||||
function StoryMapPanel:BindEvent()
|
function StoryMapPanel:BindEvent()
|
||||||
Util.AddClick(this.btnSkip, function ()
|
Util.AddClick(this.btnSkip, function ()
|
||||||
|
if not isSkip then
|
||||||
--StoryMapManager.GetSingleStoryConfig()
|
--StoryMapManager.GetSingleStoryConfig()
|
||||||
MsgPanel.ShowTwo("是否跳过这段剧情?",function() end,function()
|
MsgPanel.ShowTwo("是否跳过这段剧情?",function() end,function()
|
||||||
isSkip = true
|
isSkip = true
|
||||||
this:StackPop()
|
this:StackPop()
|
||||||
end,"取消","确认")
|
end,"取消","确认")
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
Util.AddClick(this.btnGoOn, function ()
|
Util.AddClick(this.btnGoOn, function ()
|
||||||
this:ShowDialog()
|
this:ShowDialog()
|
||||||
|
|
Loading…
Reference in New Issue