Game
Crumbling World

6 years ago

Optimizing Crumbling World
Hello everyone! I was working on a promising improvement that has the potential to optimize the performance of Crumbling World, especially when it comes to running the game on low-end computers and mobile devices.


The primary challenge in implementing this change was figuring out a way to modify the main feature of the game without undermining the unique performance provided by Crumbling World. In other words, to accomplish this task, I had to alter the procedural world generation carefully.

5d091faa19d77.jpg

The Challenge

The feature that truly makes Crumbling World unique is how each level is generated before the player’s eyes. Before modification, this world generation occurred on the fly, which led to pretty high-performance needs, as the Navmesh had to be continuously updated. This caused some issues with the game’s AI, both for NPCs and enemies.

It turns out that allowing the geometry of 3D models to be visible when generating was the primary cause of these performance issues, due in large part to the fact that the rending engine suddenly had to create things on demand. Thanks to the optimization work that I have been doing, these pesky issues are now fixed.

The Solution

To solve both the performance and Navmesh issues, I opted to create each level in advance while the game was loading. This change wasn’t easy, as it involved some significant modifications to the core game functionality, which in turn unintentionally broke some secondary features that took a lot of time to figure out. By creating levels in advance, I only had to create the Navmesh once, which certainly helped the overall performance of the Navmesh agents for NPCs and enemies. At the same time, this improved the overall performance of Crumbling World, as the Navmesh now does not have to be consistently updated throughout gameplay.

5d091fab368ff.jpg

Additionally, I lowered the ground cells below the fog level, so they are now not visible until the player steps on the previous ground cell. This preserves the visual effect of level generation without having to dedicate extra computing power to the game’s performance. Another advantage that I found was that when levels were built in advance, all of the associated geometry was already rendered when the level was loaded. This means that the render engine wasn’t negatively affecting performance when the level was rising in front of the player, as the geometry already existed, which was especially useful for levels where the ground cells have more elements and graphical complexity.

5d091fac23d82.jpg

Pros and Cons

While generating levels in advance certainly helps to improve overall performance, there are some disadvantages associated with this approach. The main downside is that paths and roads can no longer have forks, as levels would be too large and complex. This removed the illusion that players are able to choose different paths, which was a nice effect even though the outcome was always the game regardless of the route selected. Now, when the level is created roads and paths are randomly generated in a way that chooses the fork for players. Luckily, this adds a bit more variety to levels when they are generated, which will likely allow for greater replayability when combined with secret sections for missions and quests. As a result, this means that it will be almost impossible to play through the exact same level layout twice.

5d091face4a61.jpg

I’m working hard on more exciting and enjoyable features that are sure to improve the playability of Crumbling World.

Please consider checking out Steam, where you can wishlist Crumbling World.

Thanks for reading, and I look forward to sharing more exciting updates with everyone soon!

5d091fadc7abd.jpg


0 comments

Loading...

Next up

🎮 Testing out the new distraction mechanic and fine-tuning the enemy AI's hearing in Lobo! Now you can throw objects to mislead enemies and sneak through more strategically.

Back to level design! Working on the lighting and atmosphere in Lobo to perfectly capture the story and lore of the world. 🌑💡

Hello everyone! My game Crumbling World is 80% off for Halloween! Grab it on Steam for less than $3. https://store.steampowered.com/app/1003560/Crumbling_World/

Testing the audio message system in #LoboGame, triggered by different sources like quest givers, interactable objects, NPCs, and environmental triggers. 🎧🔊 #GameDev #IndieDev #UE5

Boss Enemies Happy Holidays! In this update, we will be talking about the Boss Enemies you’ll soon have the chance to encounter throughout Crumbling World.

Prototyping and testing stealth mode in tall grass for Lobo! 🌿 Watch how enemies react when one of them stumbles upon a fallen comrade. 🎮 #GameDev #Stealth #IndieDev #LoboGame

Stealth in Lobo: Crouch to activate stealth mode, with unique animations depending on the weapon equipped. Land a stealth attack for an instant kill! 🐺🎮 #LoboGame #IndieDev #GameDev

Jump And Grab Edge System Since the last update, I have been working on the Jump and Grab Edge System for Crumbling World. I decided to rework these movement mechanics, as I thought it would be great to add a bit more complexity to each of the levels.

Quests And Missions Recently, I have been working on incorporating Quests and Missions into Crumbling World, which is likely to be the most exciting and fun update to the game so far.

UI, Communication And Usability This week, I have been working on the main user interface (UI) for Crumbling World. UI is an essential part of any game, as it is one of the main tools that we as game designers use to communicate with our players directly.