2

基本上,如果用户在我希望将他们带到场景 1 之前从未玩过游戏,如果他们没有,我希望它把他们带到他们所在的上一个场景,我该怎么做。

我已经尝试了一段时间,这是我想出的代码,我确定它不应该是这样,但问题是我找不到答案,有什么帮助吗?谢谢!

 local function onSceneTouch( event )
    if event.phase == "ended" then
       scene = storyboard.getPrevious()
       if scene == "main" then
         storyboard.gotoScene( "scene1", "slideLeft", 500 ) else
         storyboard.gotoScene( --what goes here? previous scene?, "slideLeft", 500)
         return true
       end
    end
 end
4

1 回答 1

3

尝试这个

local previousScene=storyboard.getPrevious()
storyboard.gotoScene(previousScene)
于 2013-04-16T07:45:39.960 回答