Skip to content

Why Doodle Engine

Doodle Engine is built for story-driven games where dialogue and world state matter more than movement or combat.

Game authors write content in YAML and a simple dialogue DSL. Developers extend the engine and build renderers in TypeScript. Writers work in text files. Programmers work in code. Both can move forward without blocking each other.

The engine supports visual presentation elements such as image banners, video triggered by dialogue effects, and narrative interludes with scrolling text. This allows games to mix prose with structured scenes and transitions.

Games built with Doodle Engine can be shipped as standalone titles. Projects typically run in the browser during development and can be packaged for desktop using Electron, Tauri, or similar tools.

The goal is to make narrative games easier to build without locking projects into a specific ruleset, genre, or visual style.

Twine is designed for hypertext fiction: stories told through linked passages. Doodle Engine is aimed at games with persistent state and world structure, such as locations, inventory, and quests.

TwineDoodle Engine
Content formatHTML passagesYAML + dialogue DSL
State managementMacros and variablesStructured game state with conditions and effects
OutputSelf-contained HTMLBrowser and desktop builds
Best forBranching text storiesStory-driven RPGs with world state

Ink is a language for branching dialogue and narrative flow. It assumes you will provide the surrounding game systems yourself.

Doodle Engine includes those systems so dialogue, inventory, quests, and world state are part of the same model.

InkDoodle Engine
Content formatInk scripting languageYAML + dialogue DSL
Game systemsProvided by your engineBuilt-in (inventory, quests, maps, journal)
RendererBring your ownIncluded (React) or custom
Best forDialogue inside an existing game engineComplete story-driven RPGs

Ren’Py is a visual novel engine with a Python-based scripting language and a renderer designed around sprites, backgrounds, and scene composition.

Doodle Engine focuses on text-driven games and leaves presentation to the renderer.

Ren’PyDoodle Engine
LanguagePython + Ren’Py scriptTypeScript + YAML + DSL
PlatformDesktopBrowser and desktop (Electron, Tauri)
Visual styleVisual novel presentationText-driven with optional images, video, and interludes
Game systemsVisual novel focusedRPG-oriented (quests, inventory, maps, party)
Best forVisual novelsText-based RPGs and adventure games

Doodle Engine is a good fit when:

  • You are building a text-based RPG with dialogue, quests, and inventory
  • You want to separate content from code so writers and programmers can work independently
  • You want to build a complete narrative game that can ship on Steam or itch.io
  • You want a development workflow that runs in the browser but packages to desktop
  • You want to present story moments using images, video, or narrative interludes alongside dialogue
  • You want to control the UI with CSS or build your own renderer
  • You need localization built in from the start
  • You want hot reload while writing and testing content

Doodle Engine is not a good fit when:

  • You need real-time combat, pathfinding, or physics
  • You are building a visual novel centered on character sprites and scene composition
  • You want a pure hypertext tool with minimal structure
  • You want to write everything in a single scripting language without external data files
  • Writers who want to build narrative games without writing code
  • Interactive fiction authors who need inventory, quests, and world state
  • Web developers who want to build narrative games with familiar tools
  • Game jam teams that need scaffolding and fast iteration
  • Educators teaching narrative design or game development