- Home /
Question by
Jacktesla · Sep 13, 2017 at 11:07 AM ·
c#renderingscenescene-loading
Only one scene?
Hi
Games like "Inside" or "Littel nightmare" all happens in one scene? how does this work?
Comment
Answer by kaplica · Sep 13, 2017 at 12:18 PM
You can create games in one scene. It requires some kind of serialising mechanism though.
An app that I'm writing in Unity3D is one scene only. How it works is that I save all the data in XML file, and then I load it to the app when I need it to. So when level 1 comes in, it loads it from XML file, then level 2 comes up and it disposes of level 1 and loads level 2.
That's all done dynamically at runtime.