Load all scenes on begning....

is it possible that all scenes load at begging… and after that just call it and it start playing like in real time with no delay??

is there any method kindly share with me…

Thanks in advance…

No, scenes are loaded one at a time, or use Background Loading (ASync is a Pro feature) to load the next scene in the background for smooth transitions.

You can achieve this manually by procedurally instantiating and destroying objects etc.

My game uses this method and so I can achieve any number of levels all generated in the same scene. Of course this may not be suitable for different styles of game.