Blog tag

#Game Development

6 posts tagged with Game Development.

← Back to all posts
5 min read

Building the Blueprint AI Hub MVP: From C++ Design Plan to Executable Behavior Trees

How I built a functional C++ AI behavior tree system in a single day, from architecture to execution.

C++AI SystemsBehavior TreesGame DevelopmentMVPSystems Design
Read more
4 min read

How I Solved Biome Blending in a Hex-Based 3D RTS Using Precomputed Transition Maps

I replaced expensive runtime blending with precomputed transition maps to achieve seamless biomes in my hex-based 3D RTS.

game developmentprocedural terrainoptimizationshadersCiv RTS
Read more
4 min read

Killing the Heightmap: Why I Switched to Noise-Driven Terrain Texturing in My Civ-Style RTS

I ditched rigid height-based terrain blending for a noise-driven system that creates natural biome transitions in my hex-based RTS.

game developmentprocedural terrainGodotshadersRTS
Read more
3 min read

From Spaghetti to Speed: How I Refactored an RTS Game to Data-Oriented Design in Godot

I slashed frame times in my hex-based RTS by restructuring unit logic around data-oriented design in Godot—here’s how.

GodotData-Oriented DesignGame DevelopmentPerformance OptimizationRTSRefactoring
Read more
4 min read

How I Secured Game Saves with Client-Side Encryption in Gear to Glory

I encrypted localStorage saves in my browser game using Web Crypto and AES-GCM—here's how I balanced security, performance, and simplicity.

javascriptweb-cryptogame-developmentsecuritylocalstorage
Read more
4 min read

When Plugins Do More Harm Than Good: Removing Bloat from Gear to Glory 4.3

I removed two underperforming plugins from Gear to Glory 4.3—trading bloat for stability and maintainability with Godot’s built-in tools.

Godotplugin optimizationcode maintenancegame developmenttechnical debt
Read more