Hello all,
Disclaimer: very new to Corona…
I have a question regarding composer overlays. I’m kind of abusing the overlay function (I think) for a tutorial scene showing. So, I start a scene, and in the scene I have the following:
if myLevel.showTutorial == true then
composer.showOverlay( “showtutorial”, {isModal=true, effect=fromTop} )
end
createLives()
createProgress()
createGame()
This does work, but I don’t want the createLives and other functions to start… I want them to wait until the overlay is finished. Is this possible or should I try a different route?
Thanks,
Arne