The levels tag has no wiki summary.
13
votes
4answers
3k views
2D non-tile based map editor
I am currently developing a relatively simple 2D, topdown oriented adventure game for the iPhone and was wondering what would be the easiest way to create the maps for my game. I figured I would need ...
55
votes
19answers
7k views
Level Design Tips [closed]
What are some pitfalls or pieces of good advice when designing levels or maps for a (presumeably 3D but not necessarily) game?
7
votes
2answers
1k views
Level creation of Rayman Origins type game?
Does anyone know the technique they used to create their levels (using rayman origin as an example)? I'm strictly speaking of the floors and walls. Doesn't look like tiled based. What is the workflow ...
12
votes
3answers
1k views
How to store a shmup level?
I am developing a 2D shmup (i.e. Aero Fighters) and I was wondering what are the various ways to store a level. Assuming that enemies are defined in their own xml file, how would you define when an ...
5
votes
2answers
1k views
How should I manage level progression?
In my code, I just have a Level class right now in the main game loop that just blits a background and spawns some enemies for testing purposes...But I can't figure out how to go about implementing ...
6
votes
3answers
613 views
Storing, loading and editing a level
I'm trying to find useful information on creating game levels in a reasonably efficient way.
Additionally, information in setting up a fairly painless way to edit this information would be handy (the ...
4
votes
2answers
658 views
Engine with Terrain and Indoor Areas (BSP-like)
I'm not really a graphics programmer, but I used to toy around with Truevision3D 6.5 a few years ago. It wasn't too bad, but TV3D was just going nowhere so my foray into 3d game dev ended there.
I ...
3
votes
4answers
782 views
Tools for editing 2D sprite-based game levels
What are good free and widely used tools for editing 2D sprite-based game levels? I'm looking for one that allows exporting data to a custom format. One that I know of is Blender — a 3D tool, ...
1
vote
1answer
407 views
Connect-three game: Increasing level-of-difficulty as play progresses
I'm writing a connect-three type game (think Chuzzle, but without all those nasty locks, and with no big chuzzles) and I'm trying to figure out how to increase the level of difficulty as play ...
8
votes
1answer
232 views
Chunking/caching large levels in a singleplayer game
Does it make sense to try to offload a large nonlinear level into file-based chunks, and load those on demand? We've implemented level chunking to improve rendering performance, but still all level ...