Skip to content

AI agents bring Godot worlds to life.

Explore 2D and stylized 3D games built with Godot: lit sprite worlds, character movement and physical interactions.

The public lab process

AI work you can inspect.

Explore the published work ↗
  1. AI authors

    Scenes, scripts and authored assets

    AI agents create Godot projects as code, using 2D or 3D assets suited to the game.

  2. AI inspects

    Play, render and revise

    Agents export the project, exercise its mechanics and compare the result with its direction.

  3. Lessons return

    Tools and prompts improve

    Findings are recorded and carried into the builder’s guidance and tools for future work.

Made in the lab.

Explore all labs ↗

1–6 of 7 projects

Waystone

Godot · Real-engine 3D

Waystone

About this project

Dusk on a mountain pass, and the path needs marking. Slide each granite waystone over the plinth, turn it, let it down — and watch a real RigidBody3D cairn find its balance. Every stone is a Blender sculpt baked to a low-poly hull, and its collider is that same mesh, so nothing balances on geometry you cannot see. Every third stone the wind rises: a mass-scaled impulse on the whole stack, and the tall pillar you were proud of is the one that goes. Eight stones standing before three are lost.

Featherfilch

Godot · Real-engine 2D

Featherfilch

About this project

A magpie is robbing a museum at night and the only thing that can catch her is light. The watchmen's lanterns are real shadow-casting Light2D cones, the cases and columns are LightOccluder2D, and the detection test raycasts that same geometry — so the shadow you can see is literally the hiding place. Sneak, pry five cases, carry each jewel home to the nest vent in your beak; the flutter-dash is fast and loud. Blender-rendered normal-mapped sprites, mocap-walked guards, faces that blink and go wide when they spot you.

Breakfast Links

Godot · Real-engine 3D

Breakfast Links

About this project

The lab's first 3D piece: three mini-golf holes built from breakfast across one long table. Putt a real RigidBody3D ball up a sunken toast ramp, through a toast arch, around the pancake stack (mind the syrup pool — it grips), through a mug tunnel between sugar-cube walls to the strawberry flag. Real-time DirectionalLight3D shadows over Blender-baked food props, felt fairways with piped-crust curbs on a gingham cloth, and the table edge is always one bad putt away.

The Big Cheese

Godot · Real-engine 2D

The Big Cheese

About this project

The village cheese-roll, and you ARE the wheel: a real RigidBody2D barreling downhill with torque and a grounded hop — hay pyramids burst, fences splinter at speed, geese flap off honking, mocap villagers tumble in chase. Sunrise Light2D over normal-mapped meadows, physics camera with speed zoom, full juice pass.

Calaverita

Godot · Real-engine 2D

Calaverita

About this project

Past midnight on Día de los Muertos, a little calavera runs the fiesta rooftops to her family's ofrenda. She's a real Skeleton2D cutout rig — nine Blender-rendered bones driven by CMU motion capture — who rattles apart when she falls and reassembles at the last candle. Coyote time, jump buffering, swinging piñatas, firework hazards, five parallax bands.

Inkbout

Godot · Real-engine 2D

Inkbout

About this project

A drawn-on-paper prizefight: read the bruiser's windup, sway or duck, and counter in the opening — three knockdowns and the eraser finishes him. Procedural Line Art ink over mocap boxing, cel sprites with normal maps under a real desk-lamp Light2D, ink-splat particles and a full juice pass.

Lamplighter's Round

Godot · Real-engine 2D

Lamplighter's Round

About this project

Dusk falls on a stone harbor village: carry your flame down the lanes and light all ten street lamps before night, while wind gusts hunt it. Every sprite is a Blender render with a matching normal map, so real Light2D pools roll across the cobbles — with occluder shadows, autotiled lanes, GPU particles and a normal-mapped water shader.

AI-authored art, brought into Godot

AI agents author Blender assets and Godot scenes, using rendered sprites or 3D models to suit the piece. The lab’s signature technique: characters are modelled in Blender, rendered to sprite sheets with a matching normal-map pass per frame — so 2D sprites react to Godot’s dynamic lights. Torches flicker across a hero’s armor. Most hand-drawn games can’t do this.

CanvasTexture — hero spritediffuse + normal
Generated armored hero illustration illuminated from the left
Light from left
Generated armored hero illustration illuminated from the right
Light from right
Lighting study: the same hero, illuminated from opposite sides.

Scenes you can read

Godot scenes and scripts are plain text — an agent authors complete node trees, tilemaps, particles and GDScript the same way it writes code. No binary editor state, no black box: every piece’s source is inspectable line by line.

lantern_keeper.tscn
[node name="Keeper" type="CharacterBody2D"]
├ Sprite2D · CanvasTexture(diffuse, normal)
├ AnimationPlayer · walk/idle/jump (mocap)
├ CollisionShape2D · capsule
└ Light2D · lantern glow
keeper.gdsignals up, calls down

Engine features that earn the engine

A piece that could ship on plain canvas is a failed concept here. Every piece visibly uses what only a real engine provides: tilemap autotiling, Skeleton2D cutout rigs, GPU particles, physics bodies — or the full 3D pipeline for stylized-3D pieces.

Engine feature audit — cycle gateEarned
TileMap + terrain autotiling3 terrains, edge pieces picked by the engine
Light2D + occluderslantern cones, wall shadows
GPUParticles2Dember drift + impact bursts
CharacterBody2D physicsreal collision, no hand-rolled points

Headless to the web, no strings

The platform drives Godot’s headless export — no license servers, no editor, no special serving headers — and the result plays in the browser like any static page. MIT-licensed engine, zero operational drama.

$ godot --headless --export-release Web
import · 214 resources
export · GL-compatibility renderer
web/index.html + wasm — no SharedArrayBuffer needed
boots under plain HTTP · selftest ok

How a piece gets made

01

Concept pack

Seven sheets + element inventory, same standard as every lab.

02

Blockout

Gray scenes playing first — feel before art.

03

Blender art

Normal-mapped sprite sheets with mocap frames; glbs for 3D pieces.

04

Real engine features

Tilemaps, lighting, skeletons, particles — visibly earned.

05

Verify until clean

Full gate chain against the piece’s own concepts.

Questions, answered

Why is Godot "the most AI-authorable real engine"?

Its scene format and scripting language are plain text with a clean structure — an agent can author complete games the way it writes code, and every change is reviewable. Engines with binary scene formats can’t offer that.

What’s special about the sprite technique?

Sprites are rendered from 3D models with a matching normal-map pass per frame, so Godot’s dynamic 2D lights shade them in real time — professional 2D lighting that hand-drawn sheets rarely achieve, essentially free from our pipeline.

Does it do 3D too?

Yes — stylized 3D through the same Blender pipeline as the other 3D labs, with Godot’s renderer. The lab is 2D-first because that’s where Godot leads its class.

Can I build a Godot game myself?

The Godot tier in the AI Game Builder runs this exact pipeline — describe a 2D game that deserves real engine features and the builder authors it in Godot.

How do I find only the 2D or 3D examples?

Use the 2D games or 3D games category buttons in the gallery. The navigation links for each dimension also open the corresponding view of this lab.

Does playing a browser example determine my build’s export format?

No. The public example shows the lab’s published output. For your own build, specify the target platform in the brief and review the available engine, packaging and delivery options.

What should I inspect in a sprite-based example?

Look at the character during movement, turns and transitions, not only when idle. Consistency between animation, lighting and the surrounding world matters as much as the individual sprite.

Build your own game with a real engine

Describe it. The builder authors the scenes, makes the art and verifies the result.