我有一个 level1.lua 独立和工作程序。但是当我想使用 导航到它时gotoScene()
,它不会播放!
local storyboard = require "storyboard"
local scene = storyboard.newScene("level1")
local function level1_pressed()
storyboard.gotoScene( "level1", "fade" ,40 )
print("level1 should start")
return true
end
local level1 = display.newText( "level1",20 ,20,font, 40 )
level1:setTextColor(math.random( 50, 200 ),math.random( 50, 200 ),math.random( 50, 200 ))
level1:addEventListener( "touch", level1_pressed )
这是我的 main.lua。“level1 should start”字符串在终端上正确打印,但它没有启动!问题是什么?