devtake.dev

Beyond the engine: six open-source tools that shape how games get made

Godot, Unity and Unreal get the headlines, but six open-source tools quietly do the art, levels, and dialogue work that real games ship on.

Hiro Tanaka · · 5 min read · 5 sources
Illustration of open-source game development tools beyond the engine
Image: github.blog · Source

Godot, Unity and Unreal get the headlines. They’re not where most of a game gets built, though, and the gap matters more than the engine wars suggest. Pick any shipped indie title and trace where the actual hours really went.

The engine ran the game loop, sure. But the sprites came from a pixel editor, the levels from a tile tool, the branching conversations from a dialogue compiler, and the in-engine debug panels from a UI library that has nothing to do with your engine choice. A GitHub roundup published in May made the same point across 10 projects. Here are the six that matter most if you’re shipping something this year, why they earn the slot, and which one to install today.

The shortlist at a glance

ToolWhat it doesWhy it mattersLink
BlockbenchLow-poly / voxel 3D modelingBrowser-based, exports glTF and game formatsblockbench.net
PixeloramaPixel art and sprite animationBuilt in Godot, runs in the browser toopixelorama.org
LDtkEntity-driven 2D level editorMade by a Dead Cells dev, typed data exportldtk.io
TiledTilemap editor12 years old, the de facto tilemap standardmapeditor.org
Yarn SpinnerBranching dialogue compilerWriter-friendly, powers award winnersyarnspinner.dev
Dear ImGuiIn-engine debug and tool UIThe industry’s default for editor panelsgithub.com/ocornut/imgui

Blockbench: 3D modeling that runs in a tab

Blockbench started as a Minecraft model editor and grew into a general low-poly and voxel modeler with roughly 5,600 GitHub stars. It runs in the browser or as a desktop app, and it exports glTF, OBJ, and several game-specific formats. The April 2026 v5.1 line keeps the cadence brisk.

The pitch is friction. Blender can do everything Blockbench does and far more, but the learning curve is a cliff. For a small team that needs a stylized prop or a character in an afternoon, the lower ceiling is the whole point. GPL-3.0 licensed, so check that against your distribution plans if you fork it.

Pixelorama: a pixel-art multitool

Pixelorama is the pixel-art standout, sitting near 9,700 stars. The neat twist: it’s built in Godot itself, which makes it a working showcase of what the engine can do outside games. You get sprites, tilesets, frame-by-frame animation, and spritesheet export, on Windows, Linux, macOS, and the web.

It’s MIT-licensed, so commercial use is unrestricted. If you already know Aseprite, Pixelorama covers most of the same ground for free, and the web build means a teammate can open a file without installing anything. The trade-off is polish: Aseprite’s animation timeline is still smoother for heavy work.

LDtk and Tiled: two ways to build a level

Level editing splits into two camps, and both are worth knowing. LDtk, the Level Designer Toolkit, comes from Sébastien Bénard, a lead developer on Dead Cells who built it as his own dream tool. It’s entity-driven: you define typed enums and auto-tiling rules, then export clean structured data your game reads directly. The MIT license and ~4,100 stars make it an easy default for a new 2D project, though the tagged releases have slowed since 2024.

Tiled is the veteran. At 12,600 stars and a fresh 1.12 release in May 2026, it’s the closest thing to a tilemap standard, with TMX and JSON export that nearly every framework can read. LDtk feels modern and opinionated; Tiled feels universal and battle-tested. Greenfield project? Try LDtk. Need something every engine already imports? Tiled.

Yarn Spinner: dialogue writers can actually use

Yarn Spinner solves the problem nobody wants to hand-code: branching conversation. Writers script dialogue in a lightweight language that reads almost like a screenplay, and the compiler turns it into something the engine runs. It shipped v3.2.1 in May 2026 and carries about 2,800 stars.

The receipts are strong. Yarn Spinner powers the dialogue in Night in the Woods, A Short Hike, and Dredge, and two of its games won the IGF Seumas McNally Grand Prize. It’s MIT-licensed and engine-agnostic, with a polished Unity integration. If your game has more than a few lines of branching text, this is the one I’d reach for first.

Dear ImGui: the tools behind the tools

Dear ImGui doesn’t draw a single pixel a player sees. It draws everything the developer sees. At 73,700 stars it’s the most popular project on this list, and it’s the default immediate mode GUI for in-engine debug panels, profilers, and editor windows across the industry. Tools like the Tracy profiler and ImHex are built on it.

The library is MIT-licensed C++, with bindings for 30-plus languages and a steady release cadence (v1.92.8 landed in May 2026). You won’t ship it to players. You’ll use it the moment you need a slider to tweak gravity at runtime instead of recompiling. That’s a workflow every team hits.

Our pick: start with Yarn Spinner

If you install one tool from this list today, make it Yarn Spinner. Here’s the reasoning. Art and level tools have strong commercial alternatives a small budget can cover, so the open-source case is “free and good enough.” Branching dialogue is different. Writing it by hand in raw engine code is genuinely painful, the paid alternatives are thin, and Yarn Spinner has a decade of shipped, award-winning games proving it scales from a game jam to a studio release.

The broader lesson from this batch holds whatever you build. Your engine is a foundation, not a toolchain. The same logic that pushed me to write about why developer tooling keeps fragmenting applies here: the work happens in the specialized tools around the core, not the core itself. Pick the engine that fits your game, then assemble the rest from projects like these.

One caveat before you go all-in on any open-source pipeline tool. Vet what you download. The Minecraft modding scene just had a malware scare around tampered “hacks”, and the wider ecosystem has watched agentic coding tools wrestle with trust. Pull from the official repos linked above, check the license against how you plan to ship, and you’ll be fine.

Share this article

Quick reference

immediate mode GUI
A UI approach where the interface is rebuilt every frame from code, not stored as objects. Common in game debug tools because it's fast to wire up.

Sources

Mentioned in this article