What is the best way to implement continuous level throughout the game, using XNA? Imagine that I have a level with the size of a whole city (like in MMORPGs) however, the game will currently be mainly single-player. I'd like to be able to split this huge planet into parts which load asynchronously as I enter them. However, I also have other questions, such as, what happens with the part that I've come from. Its state should be stored on the disk, right? Then, what if I need to make some changes to that part, when the player comes back. Obviously, other characters should have done something rather than standing still. What's the best way to grab the state as I stored it, and modify it a bit, based on certain parameters, before I load it and let my player return.
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
|
In world of warcraft, the adjacent "tiles", which are pretty large, are loaded as a low poly model This is done so you (as a player) do not see the "end of the world". Then, once you know where the player is going, you have a Loading engine start to load the assets of the "tile" the player is going, asynchronously Unload the once from the "tile" the player is moving from, This "in short" is how Blizzard does it Hope you can make something of it. |
||||
|
|