All posts by Tomáš Andrle

D2 log 068 – Water shader

Spent some time tinkering with shaders. It was fun but also hard to come up with something actually usable in the game.

Ended up with a subtle effect which is blended on top of the pre-rendered water surface. It doesn’t tile properly but the seam is hard to notice so I’m fine with it.

I also tried distortion for the bottom layer but UV wrapping is a problem because the tiles are in a texture atlas. Putting tiles in an array texture instead of an atlas would give me more options. Maybe next time…

D2 log 067 – Tiles, pt.3

Good progress on the tileset. I made basic outlines and shapes in Blender, then exported into Pixelmator for touchups and additional dirt layers.

First time I used Geometry Nodes in Blender. Fun!

The rest though, not so much… it’s a lot of work to make everything seamless, color matched and correctly exported. Listening to podcasts & GDC talks while working on the tileset helps a lot because it stops me from overthinking it. I really need to push through this one.

Still not the final version here; there’s an off-by-one error in my Geometry Nodes setup for the curb and one of the dirt layers is disabled.

D2 log 064 – Audio improvements

Before recording new sound effects and adding music, I want to improve the audio engine a little bit.

In this first part, I implemented some fundamentals.

  1. Envelopes. Automated adjustments of gain, pitch or pan etc. Already replaced old code for fading music in and out.
  2. Audio bus hierarchy. Apply parameters to all related sounds in one place.
  3. Lowpass/highpass filter. This has been on my wishlist since Superforce and I finally got around to it. I used this article as inspiration but the code is 100% rewritten for clarity & performance.
  4. Limiter. Safety guard to avoid clipping.

The big payoff for these features will be ducking. To make important sounds stand out, I want to suppress the less important ones. This can be done with gain but also applying the lowpass filter could make it sound even better.

D2 log 063 – Ammo box

Recently I ran into a design problem. Some enemies in the game will be immune to bullets and you’ll have to use grenades. Of which you can only carry a few. What if you miss and run out? You’d have to restart the level.

For a moment I considered loot drops. For something you’d be required to get they seemed too random and potentially frustrating. Instead I shamelessly copied Half-Life and added a grenade dispenser!

It’s a box full of… grenades. Just walk up to it and get a refill. The lid opens automatically to indicate you’re not supposed (or able) to break it like the regular ammo crates.

D2 log 062 – Menu navigation

I’d love to see the game running on Steam Deck one day. Until then, I’m using an Xbox controller for testing.

Some menus were impossible to navigate with the gamepad or keyboard. I’m not building any sort of generalized UI framework but this needed to be fixed.

Each menu item contains links to its neighbors and pressing ←↑↓→ changes focus accordingly. In most simple cases, such as the main menu, the autogenerated links were enough but in more complex layouts some were omitted. So added a way to create the missing links manually.

Now I can get right into the game using just the controller, which is cool.

D2 log 060 – Smoking barrels

Exploding barrels are a nice addition to any game. Devastro 2 already had some but I wanted to make them more fun. Decided to add a burning phase that would indicate a barrel is about to explode.

The fire animation was created in Blender and the smoke is a particle system running live in the game.

Explosion chains are now much more fun too.