Creating the “game space” for a 2D game
- by alJaree
How does one setup the game space for a game so that obstacles can be spawned?
One example I am wondering about is doodle jump. Tile maps are limited in size and would need to change often if the user jumps a lot.
How would this be done in another way than tile maps.
How or what is used to create the notion of a game world where these spawned ledges/obstacles are placed as the user progresses through the stage?
What is actually moving if the user jumps from ledge to ledge, what are the ledges based on in terms of the game world/space. What data structure or representation could the game use to reference and manage the spawning of these obstacles/ledges?