Only one scene?

Hi

Games like “Inside” or “Littel nightmare” all happens in one scene?
how does this work?

hi ,
are you sure ?
just one scene?

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.

Maybe - or the levels are streamed.