Hiring guide · Mobile App

Hire Unity Developers: Rates, Vetting and Staffing Shape

The short answer

Expect $25 to $85 per hour for a competent Unity developer through an agency or staff augmentation, with senior US and Western European contractors running $100 to $175 per hour and offshore mid-level engineers landing at the low end of that band. In Digital Heroes delivery experience, most mobile game and interactive 3D projects are best served by staff augmentation rather than a full in-house hire or a lone freelancer: one senior Unity generalist who owns architecture and the frame budget, a mid-level engineer on features, and a part-time tech artist. That shape gives you seniority you cannot recruit at your stage, without paying for it during the quiet months after launch.

What a Unity developer actually does on a real project

A Unity developer builds the thing the player touches: the scene graph, the prefabs, the C# that runs every single frame, the render pipeline choice, and the build that has to open on a four year old Android phone without cooking it. On a mobile project they are also, whether the job description says so or not, the person responsible for your frame budget, your download size, and whether you can change a difficulty curve without shipping a new binary through store review.

It breaks in week seven, and it breaks the same way most times. The build runs at a locked 60 in the Editor on the lead's MacBook. You sideload the APK onto a Redmi Note for a playtest and it opens at 24fps, sags to 14 after four minutes because the chip starts thermal throttling, and the download is 340MB because everything got dumped into a Resources folder and shipped uncompressed. You open the Profiler and there are 11ms of garbage collection inside a 16ms frame, most of it from string concatenation in Update. The developer says they will optimize at the end. There is no end. You are three weeks from soft launch and the fix is architectural, not a checkbox.

The Editor lies. It runs Mono, not IL2CPP. It has different memory behavior. It runs on desktop silicon with a fan. A Unity developer who has only ever seen their game in Play Mode is not a Unity developer who has shipped, and that single distinction accounts for most of the gap between the good hires and the expensive ones.

Engagement models: in-house, freelancer, agency, staff augmentation

In-house hire. Right when Unity is your product for years and you have real live ops: weekly content drops, an economy, seasonal events. Wrong when you have one game and no plan for a second. After launch your Unity engineer has thirty percent weeks of bug fixes and seventy percent of nothing, and you pay for all of it. This is also the hardest role to recruit: the good ones are inside studios, and you compete on shipping credits and comp, not on your funding story.

Freelancer. Fastest and cheapest, and correct for a slice with a finish line: an iOS port, wiring in ad mediation, clawing back a frame budget, a prototype to put in front of an investor. Wrong for anything you intend to maintain. The failure mode is predictable: bus factor of one, Asset Store licenses bought under their seat and not yours, and a project structure only they can navigate. When they go quiet in month five you own a Unity project nobody else can open without a week of archaeology.

Agency. Buys you the tech artist, the backend engineer for the economy, QA on an actual device lab, and someone who has been through App Store review and Google Play policy rejections before. You pay more per hour and you carry coordination overhead. Wrong when your scope is a single clear ticket.

Staff augmentation. One or two engineers embedded in your standup, your repo, your architecture calls, on someone else's payroll. This fits most mobile game and interactive 3D work, because it lets you rent seniority for the six months where seniority decides whether the project ships.

What Unity developers cost

These ranges are what Digital Heroes sees quoted and what we quote, from our own delivery and market experience. They are not a survey, and rates move with region, seniority, and how specialised the work is.

  • India, South Asia, Southeast Asia: mid-level Unity $20 to $45 per hour, senior $40 to $65.
  • Eastern Europe and Latin America: mid-level $35 to $60, senior $60 to $90.
  • US, UK, Canada, Western Europe, Australia: contractors $90 to $150, with senior specialists in DOTS, netcode, XR, or tech art at $150 to $200 and up.

The in-house number is not the salary. Payroll taxes, benefits, insurance, and equipment push base up by a meaningful margin, commonly a quarter to a third again in the countries we hire in. Recruiting costs either an agency fee, and the game recruiters we have used quote a percentage of first year base, or several months of your own hiring time. Then ramp: four to eight weeks before a strong Unity engineer is net positive on an existing codebase, longer if the project has custom editor tooling they have to learn. Add per seat Unity licensing, a CI setup that needs its own license to run headless builds, and a device lab of six to ten Android phones across performance tiers plus a couple of older iPhones. Everybody forgets the device lab, and the device lab is the thing that catches the 14fps.

How to vet a Unity developer

Skip the general C# quiz. Ask questions only someone who has shipped can answer without stalling.

  • "Walk me through Update, FixedUpdate, and LateUpdate. Where does input reading go, where do physics forces go, where does camera follow go, and why?" Basic, and it sorts the room in ninety seconds.
  • "Tell me about a bug that only appeared in an IL2CPP build and never in the Editor." Good answers: managed code stripping removed a type reached through reflection and they fixed it with link.xml or a Preserve attribute, an AOT problem with generic virtual methods, a serialisation library that was fine on Mono and died on device.
  • "How do you profile on device, not in the Editor?" You want Development Build with Autoconnect Profiler, or the Profiler attached over USB, reading the GC.Alloc column and the CPU timeline rather than the Editor's numbers. Deep Profile as a last resort because it distorts timings. If they have never attached to a device, everything else they say about performance is theory.
  • "Addressables or Resources, and what breaks when your remote catalog was built against a different Unity version than the player build?" Good candidates wince before they answer. They have been burned. They talk about catalog versioning, content update workflows, and why they keep Resources nearly empty.
  • "Your draw calls jumped after you started tinting objects per instance. What happened?" They should reach for SRP Batcher compatibility, MaterialPropertyBlock, or GPU instancing, and they should be able to open the Frame Debugger and show you where the batch broke. What matters is that they know batching is fragile and an innocent change can break it.
  • "Two engineers need to touch the same scene this week. What do you do?" Good: nobody does, the scene is nearly empty, everything lives in prefabs and ScriptableObjects, Git LFS and the Unity YAML merge tool are configured, or they use file locking in Unity Version Control. Bad: "we take turns."
  • "What texture compression do you ship on Android, and what is your fallback?" ASTC with an ETC2 fallback. If the answer is "the default," end the call politely.
  • "Show me a frame you took from 30 to 60 and tell me what you cut." The right answer is specific and slightly boring: pooled the projectiles, cached the GetComponent, pushed pathfinding onto a Job with Burst, cut a fullscreen blur, stripped shader variants to kill the first-run hitch, set Application.targetFrameRate deliberately rather than leaving it at the platform default.

The take-home. Do not ask them to build a game. Hand them a deliberately broken Unity project and pay for three to four hours: several hundred GameObjects calling GameObject.Find and GetComponent in Update, a Resources folder of uncompressed 2048 textures, an uncompressed audio bank, and a Canvas that rebuilds every frame. The brief is: get this under 16ms on a mid-tier Android device, do not change the gameplay, and write half a page on what you changed, what you deliberately left alone, and why. The note is worth more than the diff. Juniors fix everything they can see. Seniors tell you what they chose not to touch.

Portfolio review. Do not watch the trailer. Ask for the live store link and the crash-free rate. Ask which systems they architected versus which project they joined at month fourteen. Ask what the build size was at first submission and what it is now. Then ask them to share their screen, open the project, and walk you through the prefab hierarchy and where game state actually lives. Five minutes of that is worth an hour of conversation.

Red flags

  • The portfolio is Asset Store glue. Every credit is "I integrated Playmaker, Easy Save, and a third party controller." Those tools are fine, but if no code they authored outlived them, ask instead: show me something you wrote that another engineer maintained after you left, and tell me what they complained about.
  • They only ever tested on their own phone. Ask: name the lowest tier Android device you validated on, what your frame budget was in milliseconds, and how long you played before checking the frame rate again. If thermal throttling is a new idea to them, they have not shipped mobile.
  • Everything is a singleton MonoBehaviour and game state lives in the scene. Ask: how do you run a combat or economy calculation in a test without entering Play Mode? If they cannot, every balance tweak costs a full playthrough to verify, and you will stop tweaking.
  • They reach for DOTS or ECS on a 2D match-3. That is resume driven architecture and it will cost you a quarter. Ask instead: what is the simplest thing that hits the frame budget, and when would you not use ECS?
  • Nothing in their answers touches live ops. Balance values are consts in C#. Ask: how do you ship a difficulty change without a store review? If the answer is "we submit an update," you have built a game you cannot tune, and tuning is the entire job after launch.

When to hire a Unity developer, and when to hire someone else

If you are building a game, this is the role. Beyond that, be honest about the shape of the problem. If you are building an app with one 3D moment, a product configurator or an AR try-on, embedding Unity as a Library into a native or React Native shell works, but it adds real weight to your binary, fights your app lifecycle, and hands you two build systems to maintain forever. Often the cleaner answer is a native developer with SceneKit, RealityKit, or a WebGL view. Hire Unity when the interactive 3D is the product, not a feature.

If the target is Quest or Vision Pro, a Unity generalist is not an XR developer: hand tracking, comfort, foveated rendering, and a 72 or 90Hz budget are their own discipline. If you want console-grade AAA visuals, that conversation is about Unreal. If you need an authoritative server for a multiplayer economy, your Unity client developer is not your backend engineer: Netcode for GameObjects or Photon Fusion solves transport, not fraud, receipts, or the ledger. And if your real problem is retention or monetisation rather than framerate, your next hire is not a second Unity engineer, it is someone who can read the funnel.

Digital Heroes staffs Unity work as a shape, not a headcount: one senior Unity generalist who owns architecture and the frame budget, a mid-level engineer on features, a tech artist part-time on shaders, LODs, lightmaps and texture budgets because that is where mobile performance is won and it is not a programmer's job, and a backend engineer only once there is an economy or real-time play. Your repo, your Unity organisation, your store accounts, from day one. We start with a two week paid pilot on the slice of your project you are most worried about, and if the profiler numbers have not moved by the end, you keep the code.

Research & sources

The evidence behind this guide

Independent findings on why this investment pays off. Every link goes to the primary source.

  1. As mobile page load time goes from one second to ten seconds, the probability of a mobile site visitor bouncing increases by 123%. Source: Google / SOASTA (2017) →
  2. Standish's 2015 CHAOS research found roughly a third of software projects (about 36% by the Modern definition) fully succeed on time, on budget, and on scope, with top success drivers including executive support, user involvement, and clear requirements/business objectives. Source: Standish Group (CHAOS Report) (2015) →
  3. U.S. retailers lost an average of 1.6% of sales to shrink in FY2022 (up from 1.4% the prior year), equating to $112.1 billion in inventory losses - the benchmark case for POS-integrated loss prevention and inventory accuracy. Source: National Retail Federation (NRF) (2023) →
  4. Median SaaS spend reached $9,455 per employee, and organizations leave an average of 36% of their SaaS licenses unused. Source: Zylo (2026) →
Rohan Malhotra · Enterprise Software Consultant

Rohan advises mid-market and enterprise teams on ERP, CRM and custom software, and has led delivery on dozens of business-software builds.

Writes for Digital Heroes, shipping business software for 2,000+ brands across 55+ countries since 2017.

FAQ

Frequently asked questions

How much does it cost to hire a Unity developer?
Most competent Unity developers land between $25 and $85 per hour depending on region and seniority, with senior US and Western European contractors running $100 to $175. Offshore mid-level engineers in South Asia sit at the low end, Eastern Europe and Latin America in the middle. In Digital Heroes delivery experience, a playable mobile prototype takes a small team six to eight weeks, and a shippable mobile game is usually four to seven months of sustained work.
Should I use a freelancer or an agency for Unity development?
Use a freelancer for a slice with a clear finish line: an iOS port, an ad mediation integration, or clawing back a frame budget. Use an agency or staff augmentation for anything you intend to maintain, because you also need a tech artist, QA on a real device lab, and someone who has been through App Store review. The freelancer failure mode is a Unity project only they can open, with Asset Store licenses sitting under their seat rather than yours.
How do I test a Unity developer before hiring?
Give them a deliberately broken Unity project and pay for three to four hours: hundreds of GameObjects calling Find and GetComponent in Update, a Resources folder of uncompressed 2048 textures, and a Canvas that rebuilds every frame. Ask them to get it under 16ms on a mid-tier Android device without changing the gameplay, and to write half a page on what they changed and what they deliberately left alone. The written note tells you more than the code does, because seniors explain what they chose not to fix.
How long does it take to hire a Unity developer?
An in-house hire realistically takes eight to fourteen weeks from posting to first commit in a competitive market, plus four to eight weeks of ramp on an existing Unity codebase with custom editor tooling. A pre-vetted staff augmentation engineer can start in one to two weeks. If your soft launch date is fixed and close, the in-house timeline usually does not fit the calendar.
What is the difference between onshore and offshore Unity rates?
Offshore mid-level Unity engineers commonly quote $20 to $45 per hour, Eastern Europe and Latin America $35 to $90, and onshore US or Western European seniors $90 to $175. The savings are real, but quality variance is wider offshore, so your vetting bar has to be higher rather than lower. Timezone overlap matters more on games than on most software, because playtest feedback loops need to close the same day.
Who owns the code when I hire a Unity developer?
You should own it outright through a work-for-hire clause with full IP assignment, and the repository, Unity organisation, and store accounts should be in your name from day one, not the developer's. Unity Asset Store licenses are the exception: they are generally per seat and non-transferable, so a freelancer's asset library does not come with your project. Ask for an asset manifest with license types before the first invoice, and budget to re-buy anything you actually want to keep.
Do I need a Unity developer or a native mobile developer?
If you are building a game, hire Unity. If you are building an app with one 3D or AR moment, a native or React Native developer using SceneKit, RealityKit, or a WebGL view is often cleaner, because embedding Unity as a Library adds meaningful weight to your binary and leaves you maintaining two build systems. Hire Unity when the interactive 3D is the product rather than a feature.
What Unity version should my developer use?
Start new projects on the current Unity 6 line or a Long Term Support release and stay there through ship, because mid-project upgrades break Addressables catalogs, shader graphs, and a good share of your Asset Store plugins. A developer pushing a tech stream release for a shipping mobile game is telling you something about their risk judgment. Unity dropped the proposed Runtime Fee in 2024, so licensing is no longer the argument it was in 2023.
How many Unity developers do I need for a mobile game?
For a small mobile title: one senior Unity generalist who owns architecture and the frame budget, one mid-level engineer on features, and a tech artist part-time on shaders, LODs, and texture budgets. Add a backend engineer only when you have a real economy or multiplayer, since a Unity client developer is not the right person to write your authoritative server. Two mid-level Unity developers with no senior owner is the most common and most expensive staffing mistake we see.
How long does it take to build a custom web or mobile app from scratch?
Plan on 8 to 16 weeks for a focused first version and 4 to 9 months for a larger platform, which is the typical spread across Digital Heroes builds. The first 2 to 3 weeks go to discovery and design before any production code ships. The two things that stretch timelines most are integrations with legacy systems and slow feedback from your side, not developer speed.
Should I hire a freelancer or an agency for my software project?
A skilled freelancer is the right call for a single-discipline scope under roughly $15,000, like a website, a plugin, or one integration. Above that, projects need design, backend, testing, and project management at once, and a solo builder becomes the single point of failure: if they get sick or take a bigger client, your project simply stops. Agencies bill 20-40% more per hour but carry continuity, code review, and someone to escalate to, which is what you are actually buying.
How much does a custom mobile app cost for a small business?
Across 2,000+ Digital Heroes projects, a small-business app typically lands between $20,000 and $60,000 for one platform with a modest backend, and a two-platform build with payments and custom logic starts near $90,000. The biggest cost driver is not screen count but backend complexity: user accounts, admin panels, and integrations. If the budget is under $15,000, test the idea on Bubble or FlutterFlow first instead of forcing a stripped-down custom build.
What should I have ready before I contact an app development agency?
A one-page brief beats a formal specification: the problem the app solves, who will use it, the 10 to 15 features version one must have, two or three apps you want it to feel like, and your budget range and deadline. You do not need wireframes or a technical document; producing those is what the agency's discovery phase is for. A written feature list also makes quotes comparable, because every vendor is finally pricing the same thing.
What does it cost to run a mobile app every month after launch?
Budget three buckets: store fees (Apple charges $99 a year, Google Play a one-time $25), hosting and infrastructure, and per-use services like maps, SMS, or payment processing. Across Digital Heroes client projects, a small production app runs $150 to $500 a month all-in before any new feature work. The number scales with usage, so ask your agency for a cost projection at 1,000 users and at 50,000, not just at launch.
Does my app need to be HIPAA or GDPR compliant?
HIPAA applies if the app handles US health information for providers, insurers, or their vendors; GDPR applies the moment you have users in the EU, wherever your company is based. Both reshape the build: HIPAA requires hosting vendors that will sign a business associate agreement, and GDPR requires consent, data export, and account deletion flows. No-code platforms generally will not sign a business associate agreement on standard plans, which by itself pushes most health apps to custom development.
How small can the first version of my software be and still be worth building?
One workflow, end to end, for one type of user: the single process that currently burns the most hours or loses the most money. In Digital Heroes delivery experience, first versions scoped to 6 to 10 weeks of build time ship, get used, and generate the feedback that makes version two obviously right, while 9-month first versions routinely launch with features nobody touches. Everything you cut from v1 gets cheaper to build later, because real usage reorders the roadmap for you.
Should I launch with an MVP or wait until the app feels complete?
Launch the minimum viable product, because no app is ever complete and real store reviews reshape a roadmap faster than any internal debate. In Digital Heroes delivery experience, a focused first release with five to eight core features runs 40 to 60% less than the founder's full wish list and ships months sooner. The discipline is choosing the one job the app must do perfectly and deferring everything else to updates.
Keep reading
let's build

Build something worth launching.

A plan, a team, a timeline, within 24 hours. No decks, no discovery calls. Tell us what you're building and we'll come back with a real scope and a real number.

message us directly · we reply within one business day

mission briefing

Monthly dispatch

Playbooks, real build costs, and what we're shipping. One email a month. No fluff.

visit us

New York HQ

1140 Broadway, Suite 704 · New York, NY 10001

Get directions
Online now

Hey there 👋 How can we help you today?