怎么去电晕sdk的前一个场景?

时间:2013-04-16 07:38:46

标签: lua corona

基本上如果用户在我想要将它们带到scene1之前从未玩过游戏,如果他们不想让它们带到他们所在的前一个场景,我该怎么做。

我已经尝试了一段时间,并且我提出了我想出的代码;我确定它不应该是它应该是但问题是我找不到答案,任何帮助?谢谢!

 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

1 个答案:

答案 0 :(得分:3)

试试这个

local previousScene=storyboard.getPrevious()
storyboard.gotoScene(previousScene)