How do I enter and exit buildings?

ideally I would like to use the multi-scene way of doing it. By loading a new scene once I open the door and reloading the previous scene when I exit the door. However whenever I leave said door the script I used reloads the level from the beginning. Any help??? I want at Skyrim/GTA style way of entering and exiting places.

Loading scenes as you enter new doors is not a bad way to go. However, you’ll probably need to persist (in PlayerPrefs, a database, a text file, etc) some state info with each level that the player could return to. That info might include such things as player location, solved puzzles, collected items, etc. With such state info available, each level change would become something like:

  • Load the new level
  • Restore the level’s previous state
  • Give control back to the player.

Thanks I’ll go give that a try!!