I am developing an application in corona where I need to reload the same screen again and again.I don't have any idea as how to do it,Can anybody explain me this with a code
|
2) main.lua
3) myscene.lua
4) reloader.lua
|
||||
|
|
|
I don't know exactly but my game i use same lua file for changeScene. myscene.lua
|
|||
|
|
|
Storyboard API is available since build 2011.678 Here's a sample using the storyboard API using build 2011.704 each touch will reload the whole scene
|
|||
|
|
|
I have tried another method which worked for me, example is given below - Step 1- create a object like - local reloadScene Step 2- Apply step 2, when reload scene is required - reloadScene = "YES" storyboard.reloadScene("eventsButtonClicked") Step 3- Apply step3, when there is no need of reload scene - function scene2a:exitScene( event ) if reloadScene == "YES" then storyboard.purgeScene("eventsButtonClicked") reloadScene = "NO" end end scene2a:addEventListener( "exitScene", scene2a ) |
|||
|
|