Which AI tools can build games in game engines?

Updated 2026-07-151,600 searches/moRanked #254 of 519· AI explained
Short answer

Unity AI is the main first-party option — an in-editor agentic Assistant plus Generators for sprites, textures, sounds, animations, and materials. It needs Unity 6.0+, and Personal Edition users get a free trial converting to $10/month (as of 2026-07). No AI builds a finished game; these tools accelerate assets and code inside an engine you still drive.

Why — the first-principles explanation

The key distinction that saves you weeks: there are three different things people mean by "AI that makes games," and only one of them works well today.

The first is AI inside the engine, which is real and shipping. Unity AI — which replaced the deprecated Unity Muse — provides an agentic Assistant that is project-aware, meaning it reads your actual scene, assets, and code rather than answering in a vacuum. That context is the whole point. A general chatbot can write you a C# script, but it does not know your GameObject hierarchy, so you spend the saved time reconnecting things. Unity's Assistant can operate in a guidance mode or take action directly on your scene and assets, and Generators produce sprites, textures, sounds, animations, and materials from text prompts or reference inputs. Unity also ships an official MCP Server and an AI Gateway.

The second is general coding AI pointed at your project — Claude Code, Cursor, Copilot. These are often stronger at pure programming than engine-native assistants, because that is all they do. The trade is context: they see files, not the editor state. In practice, serious developers use both, letting the coding agent handle systems and the engine-native tool handle assets and scene work.

The third is "describe a game, get a game." This does not exist in any usable form. And the reason is structural, not temporary. A game is not a document — it is a system of interacting rules with emergent behavior that must be tuned by feel. Whether a jump feels good is not a fact the model can look up; it is discovered by playing it 200 times and adjusting numbers. Models can generate the code for a jump instantly. They cannot tell you it feels floaty. Everything that makes a game good lives in that loop, which is why the last 10% of a game takes 90% of the time and why no prompt collapses it.

So the honest framing: AI has compressed the parts of game development that were typing and asset production, and left the parts that were judgment and iteration exactly where they were. That is still a large win — a solo developer can now produce placeholder art and boilerplate systems in an afternoon. It is not a shortcut past making the game.

An example that makes it click

It's like a kitchen where a robot now does all the chopping, and can even invent a decent sauce if you describe it. Prep that took three hours takes twenty minutes. That's genuinely huge if you're cooking alone.

But the robot can't taste. It'll happily hand you a dish that's technically correct and boring. Somebody still has to eat a spoonful, decide it needs acid, add lemon, taste again — forty times. That tasting loop is what makes the meal good, and it's the entire job that's left. Games are the same: the AI writes the jump code in two seconds and has no idea the jump feels floaty.

How to do it

  1. Pick your engine first. Unity has the most mature first-party AI integration right now; Unreal has AI-adjacent tooling but no equivalent unified in-editor assistant as of 2026-07.
  2. For Unity: install Unity 6.0 or later, add the AI packages, accept the in-editor terms, and link your local project to a Unity Cloud project — all four are required.
  3. Open the Assistant and pick a mode: guidance (it advises) or agentic (it acts on your scene and assets). Start with guidance until you trust it, and commit to version control first.
  4. Use Generators for placeholder assets — sprites, textures, sounds, animations, materials — from text prompts or reference images. This is where the biggest time savings are.
  5. Pair with a general coding agent (Claude Code, Cursor, Copilot) for systems programming, which they typically handle better than engine-native assistants.
  6. Consider Unity's official MCP Server if you want external AI agents to interact with the editor programmatically.
  7. Use AI for the boring middle: boilerplate, serialization, UI wiring, placeholder art, editor tooling. Keep hand-authoring the parts that define feel — movement, camera, game feel, difficulty curves.
  8. Budget for iteration, not generation. Plan your schedule around playtesting and tuning, because that is what AI does not compress.
  9. Check asset licensing before shipping. Generated-asset terms and commercial rights vary by tool and plan and change frequently.

Key facts

Infographic: Which AI tools can build games in game engines — short answer and key facts
Visual summary — Which AI tools can build games in game engines?
▶ The 60-second explainer (script)

Which AI tools actually build games in game engines? Let's split this into three things people mean, because only one works. First: AI inside the engine. This is real. Unity AI — which replaced Unity Muse, now deprecated — gives you an agentic Assistant that's project-aware. That phrase matters. A regular chatbot can write you a C# script, but it doesn't know your GameObject hierarchy, so you burn the time you saved wiring it back up. Unity's Assistant reads your actual scene and can act on it. Plus Generators for sprites, textures, sounds, animations, materials. Needs Unity 6 or later, and for Personal Edition it's a free trial that becomes ten bucks a month. Second: general coding agents. Claude Code, Cursor, Copilot. Often better at pure programming, because that's all they do — but they see files, not editor state. Most serious devs run both. Third: describe a game, get a game. That doesn't exist, and not because we're early. Because a game isn't a document. It's a system of rules with emergent behavior that has to be tuned by feel. Whether a jump feels good isn't a fact you can look up. You find it by playing it two hundred times and nudging numbers. The AI writes the jump code in two seconds and has zero idea it feels floaty. So here's the real picture. AI crushed the typing and the asset grind. It left judgment and iteration exactly where they were. That's still a massive win for a solo dev. It's just not a shortcut past making the game.

What authoritative sources say

Unity Manual — Unity AIofficial — Unity AI provides an in-editor agentic assistant, AI Gateway, and official MCP Server; Unity Muse is deprecated; Generators create sprites, textures, sounds, animations, and materials. source ↗
Unity Manual — Getting started with AI in Unityofficial — Requirements: Unity 6.0+, AI package installation, accepting in-editor terms, linking to a Unity Cloud project; Assistant modes provide guidance or take action on scenes and assets. source ↗
Unity Manual — Assistant (com.unity.ai.assistant)official — Unity AI Assistant is project-aware and built specifically for Unity workflows, with natural-language interaction in the Editor. source ↗
Unity — AI Game Development Toolsofficial — Unity's AI game development tools overview and product positioning. source ↗

People also ask

Can AI make a complete game from a prompt?

No. AI can generate code and assets quickly, but a game is a tuned system — whether it feels good is discovered through repeated playtesting, which no prompt shortcuts.

Is Unity Muse still available?

No. Unity Muse is deprecated. It has been replaced by Unity AI, which uses third-party models rather than Unity's own first-party models.

What does Unity AI cost?

Personal Edition users can start a free trial of the agentic assistant that converts to a $10/month subscription, as of 2026-07. Pricing changes — check Unity's current terms.

What about Unreal Engine?

Unreal has AI-adjacent tooling, but as of 2026-07 there is no equivalent unified first-party in-editor agentic assistant comparable to Unity AI. Many Unreal developers pair general coding agents with the editor instead.

Can I sell a game made with AI-generated assets?

Usually, but licensing terms vary by tool and plan and change often. Check the current commercial-use terms for every generator you used before shipping.

Related questions