Hello,
I would like to add an image while a scene is loading/initializing, and the usr would have to tap to see the scene.
I thought someone would have ever ask the question but I didn't find any answer.
Thank you !
A fast, easy to use, free, and community supported 2D game engine
Hello,
I would like to add an image while a scene is loading/initializing, and the usr would have to tap to see the scene.
I thought someone would have ever ask the question but I didn't find any answer.
Thank you !
You could create a Loading scene
- On init method, load the image you need, and if you want some loading animation
- On onEnterTransitionDidFinish method, create the next scene instance. Once the instance is created you can call another function that tells the Loading scene to notify the user to touch the screen
- On TouchesBegan method you can replace the scene with the instance you did create
You must log in to post.