Hi!
I am developing a 2’5d beat’em’up - rpg game with procedurally generated content, the basic system is working pretty good, i can generate isolated rooms (connected by teleporters to other rooms) and enemy spawners that spawn enemies you have to kill, some items (a very basic inventory system is in place) and a basic AI that follows you around and attacks you (will change the AI system to a FSM in the near future).
The system works like this:
-
- First create some empty rooms:
-
- Create a room object
-
- Add a number of mesh chunks to that room
-
- Create the room “terminators”, rocks or walls at the sides of the room
-
- Second create the teleporters
-
- For each room create a minimum of two teleporters
-
- Connect the teleporters to other teleporters in different rooms (no teleporter can connect to a teleporter in the same room).
-
- Select a random room and create an additional teleporter to connect to the player start room (this room is not created procedurally, for the moment).
The thing is that i don’t know if this is a very efficient way to handle the level creation. Right now every room chunk is a mesh created in 3ds max (a very simple mesh, btw, less than 200 polys) with a collider attached (also created in 3ds max). The chunks are quite big, like 15 meters long. I was wondering if it will be more efficient to “merge” all the meshes into one new big mesh for every room once the room has generated, or else split the meshes into smaller ones (so the occlussion culling culls more meshes).
Any idea will be appreciated.
Thank you!