---
title: "Keeping a VR giant fresh: Gorilla Tag’s two-week live ops cadence"
url: https://daily.dev/posts/keeping-a-vr-giant-fresh-gorilla-tag-s-two-week-live-ops-cadence-igcamazcm
source_url: https://unity.com/blog/another-axiom-gorilla-tag
type: article
source: "Unity"
published: 2026-08-25T16:54:52.483Z
updated: 2026-08-25T17:00:34.060Z
tags: ["performance", "game-development", "unity"]
reading_time: 9
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Keeping a VR giant fresh: Gorilla Tag’s two-week live ops cadence

**[Unity](https://daily.dev/sources/unity)** · 9 min read · 0 upvotes · 0 comments

## Summary

Another Axiom's producer Derek Arabian explains how the studio ships Gorilla Tag updates every two weeks across VR platforms. The interview covers performance-first priorities (targeting a steady 90fps on Quest 2 standalone), a sandboxed and whitelisted user-generated content system with polygon and object caps, the move to Unity's Universal Render Pipeline with an uber shader setup, use of Addressables to manage a huge cosmetic catalog within Meta Quest APK size limits, reliance on Unity Cloud Build Automation for CI/CD, Unity Profiler workflows for tracking draw calls and memory, and lessons from building the gravity-bending space map update.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://unity.com/blog/another-axiom-gorilla-tag>

## Questions this post answers

### How does Gorilla Tag keep custom user-generated maps performant across VR headsets?

Another Axiom built a sandbox with hard limits: caps on the number of polygons in a custom map, limits on active objects, and constraints tied to performance impact. They also whitelist only a stable subset of the game's components for use in user-generated content, gradually expanding that pool as internal tools improve and more components prove safe and performant.

_Developers designing UGC systems can track how other studios balance creative freedom and performance limits on daily.dev._

### What frame rate target does Gorilla Tag use for VR performance benchmarking?

Gorilla Tag targets a steady 90 fps on Quest 2 standalone, treating it as the primary performance benchmark since it represents a large share of the playerbase, with some allowance for dips during heavy on-screen action. The Unity Profiler runs on every release build and many intermediary builds to track draw calls, garbage collection, and memory usage against that target.

_VR developers chasing frame-time budgets can compare optimization approaches like this one on daily.dev._

### How does Addressables help manage large cosmetic catalogs on Meta Quest?

Addressables package Gorilla Tag's growing cosmetic catalog into an Opaque Binary Blob (OBB), which is necessary because Meta Quest enforces APK size limits that force assets beyond a certain size out of the APK. Addressables split up the APK during Unity builds and ensure assets load from the correct location at the right time to preserve performance.

_Developers hitting platform size limits can follow Unity asset management strategies like this via daily.dev._

## Similar posts on daily.dev

- [Shipping Godot VR and Porting to PSVR2: A Partial Post Mortem](https://daily.dev/posts/shipping-godot-vr-and-porting-to-psvr2-a-partial-post-mortem-q7nigpsl0) · Hacker News · 0 upvotes · 0 comments
- [Graphics Programming weekly - Issue 420 - December 14h, 2025](https://daily.dev/posts/graphics-programming-weekly---issue-420---december-14h-2025-emqyvykgs) · Jendrik Illner · 0 upvotes · 0 comments
- [Google unveils new AI cloud tools to support game development](https://daily.dev/posts/google-unveils-new-ai-cloud-tools-to-support-game-development-woia7ttse) · GamesIndustry.biz · 1 upvotes · 0 comments
- [Godot XR update — March 2026 – Godot Engine](https://daily.dev/posts/godot-xr-update-march-2026-godot-engine-kubg0ieps) · Godot · 1 upvotes · 0 comments

---

Tags: [#performance](https://daily.dev/tags/performance), [#game-development](https://daily.dev/tags/game-development), [#unity](https://daily.dev/tags/unity)

[View this post on daily.dev](https://daily.dev/posts/keeping-a-vr-giant-fresh-gorilla-tag-s-two-week-live-ops-cadence-igcamazcm)
