So if my score is higher than 5 then gotoSceneA elseif gotoSceneB.
But I am getting this error:

game.lua:439: unexpected symbol near '..'*

If i remove the .. I get:

game.lua:443: 'then' expected near 'end'

My code:

if .. score > 5 then
    storyboard.gotoScene("bonus", "fade", 400)
elseif
    storyboard.gotoScene("gameover", "fade", 400)
end
end
有帮助吗?

解决方案

if score > 1000 then
    storyboard.gotoScene("bonus", "fade", 400)
else
    storyboard.gotoScene("gameover", "fade", 400)
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top