Skip to content

Unity AI ships to open beta with an in-editor agent, an AI Gateway, and an MCP server

Unity AI hit open beta today for every Unity 6 developer. It's the GDC preview, made real and shipped to the install base. The assistant lives inside the editor, understands your project, writes C# scripts, generates scenes from images, and creates placeholder assets without you ever leaving the dock.

Unity AI Open Beta launch trailer

Three modes: Ask, Agent, Plan

The assistant operates in three modes. Ask is the chat interface; you ask a question about your project and it answers using the codebase as context. Agent is the autonomous mode; you describe a goal, it generates a plan and starts editing scripts, prefabs, and scenes. Plan sits in the middle; the assistant proposes a plan, you approve it, then it executes.

It is built on third-party frontier models. Gemini is the announced backbone, but Unity is positioning the assistant as model-agnostic. This is not Unity Muse, the deprecated first-party-model product that came before it. The lineage matters: Unity tried to compete on raw model quality, didn't get there, and has pivoted to being the workflow layer.

AI Gateway and MCP server

Two pieces underneath the assistant matter more than the chat itself.

AI Gateway lets you connect third-party models (OpenAI, Anthropic, your own fine-tuned ones) through a single broker. Studios with security or licensing constraints can pin the assistant to a specific provider. The Gateway also handles credit accounting across providers.

Unity MCP server exposes the editor as a set of tools to any MCP-compatible client. That means Claude, Cursor, or your own scripts can drive the Unity editor from outside. Create a scene, place a prefab, write a script, run play mode, capture a screenshot, all over MCP. For pipeline automation and CI, this is the most consequential piece of the release.

Unity's official walkthrough of the MCP server

Pricing and access

Unity AI is a package you install into a Unity 6.0+ project linked to a Unity Cloud project. Personal users get 14 days free with 1,000 AI Credits, then $10/month for another 1,000 credits. Pro, Enterprise, and Industry seats include credits and MCP Server access by default. Credits are spent on model calls, with rates varying by the underlying provider.

The tiering is friendlier than the deprecated Muse, which gated more behind paid seats. For solo and indie developers, this is the first time Unity has shipped a serious AI assistant at a price that makes sense for hobby projects.

What works, what doesn't

Early reviews after the first few days line up with what you'd expect. Scaffolding new scripts, generating placeholder art, wiring up boilerplate, and explaining unfamiliar parts of the codebase work well. Anything that requires understanding the full state of a complex project (large prefab hierarchies, cross-scene references, performance-sensitive code paths) still needs hand-holding.

The Agent mode is impressive on small tasks and erratic on large ones, which matches the pattern of every coding agent shipping in 2026. The Plan mode (where you approve the work before it runs) is the safer default for anything non-trivial.

Why the timing is interesting

This ships eight weeks after GDC 2026's data showed that 36% of game developers are using genAI and over half think it's hurting the industry. Unity is betting that pulling the tools into the editor (rather than asking developers to context-switch to a chat app) shifts that ratio. If the assistant lives in the same window as the work, the friction of using it drops to near zero, and the holdouts have fewer reasons to opt out.

It also ships into a world where Unity games are heading into Fortnite under the Epic partnership. The "make a game" surface and the "ship to 500M Fortnite accounts" surface, in the same year, is a real go-to-market story.

What we'd test first

For studios already on Unity 6, the MCP server is the highest-leverage piece to wire up. Pair it with Claude Code or Cursor and you can drive the editor from your existing dev workflow. Asset import pipelines, automated playtest harnesses, and CI checks that need to open a scene all become scriptable from outside Unity for the first time.

For solo developers, Plan mode with the $10/month tier is a reasonable place to start. Use it for the parts of game dev that are obvious but tedious (UI screens, input handlers, save systems, settings menus) and reserve human time for game feel.

References