Unity AI in 2026: Muse, Sentis, and What's Actually Useful
PGP Studio Team · May 30, 2026 · 6 min read
Texture generation, on-device NPCs, and a quiet product shakeup: what Unity's AI stack is actually good for right now.

Unity's AI strategy in 2026 covers two genuinely different tools that get conflated constantly in client conversations, and untangling that confusion is usually the first useful thing we do when a studio asks us where to start with Unity's AI stack. Unity Muse handles content generation inside the editor itself: textures, basic animation, and natural-language assistance for writing C# scripts. Unity Sentis is a completely different category of tool: a runtime for executing trained neural networks on-device, across every platform Unity targets, from a phone to a console to an XR headset. One is an editor productivity tool. The other is a piece of shippable runtime architecture. Treating them as the same kind of decision is the most common mistake we see.
Muse: A Real Productivity Gain, With an Expiration Date Attached
Muse's value proposition for a small studio is straightforward and, based on Unity's own internal data, genuinely substantial: content creation speed-ups of up to 30 percent for teams using it during prototyping and asset iteration. For a studio without a dedicated concept artist on every project, having a fast way to generate placeholder textures, rough animation curves, or a first-pass implementation of a scripting task described in plain language is a real time saving during the parts of production where speed of iteration matters more than final polish.
The complication worth understanding before building a pipeline around it: Muse itself is being phased out in favor of a newer product Unity is calling simply 'Unity AI,' built on third-party foundation models rather than Unity's own in-house training. That is not a reason to avoid using Muse today for prototyping work, since it remains genuinely useful for exactly that purpose right now. It is a reason to avoid architecting any production pipeline, tooling, or documented team workflow around Muse specifically as if it were a permanent fixture, because the product itself is already scheduled for replacement, and any deep integration built today will need to be revisited regardless of how well it currently works.
Sentis: The Piece Actually Worth Building Architecture Around
Sentis solves a different and, for gameplay programmers specifically, considerably more interesting problem: running a trained neural network directly on a player's device, with no server round trip required, on whatever platform Unity is targeting. That means AI-driven behavior (an NPC that reacts to the specific state of a scene, a difficulty system that adapts to a specific player's performance pattern, a recommendation system tuned to individual play history) can run entirely client-side, with no network dependency, no server cost that scales with player count, and no latency between a triggering event and the AI's response.
That last point, latency, is easy to undersell until you have actually shipped something that depends on it. A conversational or reactive NPC that has to make a server round trip before responding introduces a delay that breaks the illusion of real-time reaction the moment a player notices it, and mobile network conditions are inconsistent enough that 'the delay is usually fine' is not the same guarantee as 'the delay is always fine.' Running the model on-device removes that entire failure mode structurally, rather than trying to optimize around it. That is a genuine architectural option now, not a research demo limited to a GDC stage demo with a wired connection and a controlled environment, and it changes the calculus for any game where 'the enemy feels smart' or 'the world reacts to you specifically' is part of the actual pitch.
Where This Actually Applies to a Studio Like Ours
For a small mobile and puzzle-focused studio, the honest assessment is that Sentis is currently far more relevant to XR and narrative dev-for-hire client work than to our own core catalog. A block puzzle or arcade title's core loop does not need an on-device neural network making real-time decisions; the design goal in that genre is legibility and a tight, predictable core mechanic, not emergent AI-driven behavior, and bolting an on-device model onto that kind of game would add architectural complexity without a corresponding gameplay benefit.
Where it becomes directly relevant is exactly the kind of client brief we get for XR and narrative-forward projects: an interactive experience where a reactive character, an adaptive difficulty system tuned to individual play patterns, or an on-device recommendation layer is actually part of what the client is asking us to build. Knowing the landscape well enough to scope that kind of feature accurately, including being honest about where Sentis is production-ready versus where it still needs custom integration work, is table stakes for taking on that kind of engagement credibly.
The Practical Recommendation We Give Clients
Our standing advice, both internally and to clients evaluating Unity's AI tooling, splits cleanly along the Muse and Sentis line. Prototype freely with the generative tools; they are fast, low-risk to experiment with, and genuinely useful for the specific job of accelerating early iteration, regardless of the product's own uncertain naming and packaging future. Do not wire a production pipeline, a documented internal workflow, or a client deliverable's dependency chain to a product that is already being renamed and rebuilt on a different foundation model underneath it, since that is asking for a migration headache on a timeline you do not control.
Sentis is the different case entirely: it is the piece worth genuinely investing engineering time in understanding, prototyping against, and building real architecture around, specifically for any project where on-device, real-time AI-driven behavior is part of the actual design, not an add-on feature. The distinction between 'useful today, uncertain tomorrow' and 'genuinely new architectural capability' is the single most important thing to internalize about Unity's current AI stack before committing any real production time to either piece of it.
How Sentis Actually Works, in Enough Detail to Scope a Project
Sentis is Unity's evolution of what used to ship as Barracuda, and understanding the pipeline underneath it is worth a genuine explanation rather than treating it as a black box, because the pipeline shape directly determines what a project can realistically ask it to do. A model gets trained and exported elsewhere (PyTorch or TensorFlow, most commonly) into the ONNX format, Unity's own interchange standard for pretrained models, then imported into a project as a Sentis asset. At runtime, Sentis picks a backend automatically based on the target platform and available hardware: Burst-compiled CPU execution where no compute-capable GPU path is available, and GPU compute shaders where one is, without the project needing to hand-write separate code paths for each.
That backend abstraction is the actual architectural value, not a minor implementation detail. It means the same imported model runs, with the same C# calling code, across mobile, desktop, and console, with Sentis handling the platform-specific execution path underneath. The tradeoff that matters for scoping: not every model architecture that trains cleanly in PyTorch imports and runs efficiently through Sentis's supported operator set, and model size directly trades off against both memory footprint and per-frame inference cost on constrained mobile hardware specifically. A model evaluation pass, actually importing and profiling candidate models on real target-device hardware before committing to an architecture, is not optional due diligence here, it is the single step most likely to be skipped by a team excited about the capability and burned by a model that technically works but costs more per frame than the budget allows.
On-Device Inference Versus Cloud AI NPCs: A Real Tradeoff, Not Just a Preference
Sentis and the cloud-hosted conversational AI platforms covered in our AI NPCs: Inworld vs Convai comparison solve genuinely different problems, and conflating them leads to scoping the wrong tool for a brief. A cloud-hosted conversational NPC platform gives you access to a full large language model's reasoning and dialogue generation capability, at the cost of a network round-trip for every single interaction, an ongoing per-call cost that scales with usage, and a hard dependency on the player having a live connection. Sentis-based on-device inference flips every one of those tradeoffs: zero network dependency, zero marginal per-call cost once shipped, and latency low enough for genuinely real-time gameplay systems, in exchange for a much smaller, narrower model that cannot approach a cloud LLM's open-ended conversational range.
The practical scoping question we actually ask on a client brief is not "which is better" in the abstract, it is what the specific feature actually needs: an NPC that needs to hold an open-ended, unscripted conversation with a player is a cloud-API problem by nature, no on-device model at a mobile-friable size gets close to that today. A gameplay system that needs to classify player intent, drive procedural animation blending, or make a bounded, low-latency decision from a limited set of real-time sensor-like inputs is exactly the kind of narrow, well-defined task Sentis is built for, and running it on-device is not a compromise there, it is the objectively better architecture for that specific job. Most real briefs, once we actually break them down, turn out to need one or the other, not both at once, and getting that split right up front avoids the common mistake of over-engineering a hybrid pipeline for a problem that only ever needed one of the two approaches.
What We Watch For Next
The thing worth tracking over the next few release cycles is how quickly Unity AI (the Muse replacement) matures relative to how much of Muse's current functionality it actually preserves. A clean transition where the new product covers the same use cases with a different backend underneath is a low-friction change for anyone currently using Muse for prototyping. A transition that drops capabilities or meaningfully changes the interaction model is a bigger deal, and it is the kind of thing worth monitoring in release notes rather than assuming will resolve itself quietly.
Sentis, by contrast, is worth watching for platform coverage expansion and model format support rather than any risk of discontinuation. As more of the XR and console-adjacent hardware Unity targets gets validated for Sentis specifically, the case for building genuinely novel on-device AI features gets stronger, and that is the trend line we are actively tracking for our own XR and narrative client work rather than something we expect to need to defend against.
Model Licensing Is a Question Worth Asking Before Import, Not After
One practical detail that gets skipped surprisingly often when a team gets excited about a pretrained model available in ONNX format: licensing terms attached to that model do not disappear just because it now runs inside a Sentis asset in your project. A model released under a research-only or non-commercial license is exactly as restricted once imported into a shipping game as it was as a standalone file, and we treat a licensing check as a mandatory first step before any model gets evaluated for production use, not a formality to confirm afterward once the integration work is already done. This matters more in game development specifically than in most other software categories, since a shipped commercial game is about as unambiguously commercial a use case as exists, with none of the fair-use or research-exemption gray area that sometimes applies elsewhere.
A Concrete Example From Our Own Prototyping Process
During early prototyping for a recent puzzle title concept, we used Muse to generate a dozen rough texture variants for a themed block set before committing an artist's time to a single direction. That kind of rapid, disposable exploration, where most of the output gets discarded and only one or two directions get refined further, is exactly the use case Muse is genuinely good at, and it saved real hours of manual concept iteration during a phase of the project where speed mattered more than final asset quality. None of those generated textures shipped in the final game unchanged; they informed the direction an artist then executed properly by hand.
We deliberately did not build any tooling or automated pipeline around Muse for that project, precisely because of the uncertainty around its long-term product status. Every use was manual, one-off, and treated as disposable exploration rather than a repeatable production step. That distinction, between using a tool for exploration and depending on it as infrastructure, is the practical line we draw with any AI product whose roadmap is publicly in flux.
What We Would Need to See Before Adopting Sentis in Production
Despite our genuine enthusiasm for Sentis as an architectural capability, we have not yet shipped a production feature built on it, and it is worth being honest about why. On-device model inference adds a real testing burden across device tiers that our own catalog's typical budget-to-mid-range Android audience makes especially important to get right: a model that runs smoothly on a flagship test device can behave very differently on the lower-spec hardware a meaningful share of our actual players use. Before committing a shipped feature to Sentis, we would want a testing matrix across our real device distribution, not just our development hardware, and that testing investment has not yet been justified by a specific project that actually needs on-device AI behavior.
That is a statement about sequencing, not skepticism. The first client project or internal concept that genuinely calls for reactive, on-device AI behavior will get that testing investment, and we would rather do the device-matrix validation properly once, for a real shipping feature, than build a general-purpose Sentis integration speculatively ahead of an actual need.
The Question We Ask Before Adopting Any New AI Tool
Across both Muse and Sentis, and really across every AI tool we evaluate for production use, we ask one consistent question before adopting it beyond casual experimentation: what happens to our project if this specific tool disappears or changes fundamentally in twelve months. For Muse, given its already-announced phase-out, the honest answer is that nothing breaks, because we never depended on it structurally in the first place, only for disposable exploration. For Sentis, the answer would need to be that a shipped feature could tolerate a model format change or a runtime API update without a full rewrite, and we are not yet confident enough in that answer to commit a production feature to it. That single question, asked honestly and answered before committing rather than after, has saved us from several tooling dependencies over the years that looked exciting on arrival and became a liability within a year.
That same twelve-month question applies just as much to any future tool Unity ships under the AI banner, not only the two covered here. As Unity's AI strategy continues to evolve, we expect more products to arrive with similarly uncertain long-term positioning relative to the underlying foundation models they are built on, and treating every new AI feature announcement with the same disposable-versus-structural test has kept our own tooling decisions grounded in what a feature actually does today rather than what a keynote slide promises it will eventually become.
None of this is unique to Unity's tooling specifically. It is the same evaluation discipline we apply to any third-party dependency a client asks us to integrate, whether it is an analytics SDK, an ad mediation layer, or a generative AI feature: understand what breaks if the vendor changes course, and size the integration effort accordingly before committing rather than after something changes underneath a shipped product.
On the narrower, gameplay-facing side of this same stack, our AI NPCs: Inworld vs Convai comparison looks at where on-device inference is actually running in production today. None of this gets evaluated in the abstract either, it's tested directly on client Unity development briefs before we recommend it.
Want AI features built into your next release?
We build exactly this kind of AI tooling into client Unity projects, not just cover it here.
Explore AI Integration