The AI That Actually Builds Unreal Engine Blueprints
A few weeks ago I sat down with a simple but slightly insane thought: What if I could type “Build me a third-person character blueprint with a follow camera and a basic mesh”… and an AI just did it...

Source: DEV Community
A few weeks ago I sat down with a simple but slightly insane thought: What if I could type “Build me a third-person character blueprint with a follow camera and a basic mesh”… and an AI just did it? No ChatGPT spitting out code I have to paste. No manual drag-and-drop in the editor. Just set a goal and walk away while it works inside Unreal.That’s Cipher. It’s not another “AI for game dev” wrapper. It’s an autonomous agent that lives in your Unreal project, reads your high-level goal, plans its own steps, executes them through the Python API, checks its work, and keeps going until the job is done.Why this actually feels differentMost AI tools I’ve tried are fancy autocomplete or chatbots. They hand you a blueprint graph screenshot or a wall of nodes and say “good luck implementing this.” Cipher doesn’t hand you anything—it does the thing.It connects three pieces that talk to each other in a tight loop:AI planner (the brain) Command system (the translator) Unreal Engine (the hands) Righ