April 27 2020
Addressables does it all for you, which makes it easy to trust the system.
But, did you know that Unity can silently duplicate your assets into different bundles?
This means for you: more RAM, more bugs and more money wasted in CDN.
So the question is, do you know what is really hiding in your asset bundles?
And… can you trust Unity?
Let’s find out.
In this blog post, I’ll show you:
Unity Addressables is a solid system that does a lot for you, such as resolving asset dependencies automagically for you.
And that’s great, but… sometimes it might do just too much.
You see, when you delegate the asset bundle generation to Unity, the system does its best to pack your addressable assets into its groups.
However, a big problem comes with asset inter-dependencies.
How do I know?
Because I suffered from it. And some of my coaching clients did as well.
You won’t like this type of surprises, so let me explain how this can affect you.
For simplicity, let’s assume your game has 3 types of walls with a different models that share a material.
You put each wall in a different asset bundle, and guess what happens?
Yep, the material and all its textures are duplicated in each asset bundle.
And that’s not nice if you have 4k textures.
How do you know the textures are duplicated?
Well, check this out.
Each wall asset bundle contains the same assets except for the mesh.
This issue will skyrocket your asset bundle size, your cooking times and your CDN costs.
You can detect such problems with the Addressable Analyze Rules too. I’ll cover that in another post.
So, how do you explore your asset bundle contents like I showed you?
First, install the package through the package manager.
Then, open it through Window → AssetBundle Browser
Once you have the Asset Bundle Browser open, go to the inspect tab and add the asset bundles you generated with the Addressables API.
These bundles are often placed within the addressables’ Library folder, e.g. Library com.unity.addressables StreamingAssetsCopy aa Windows StandaloneWindows64
After you add the Unity asset bundles, you can click on them to inspect its contents.
Within Advanced Data → Preload Table, you’ll be able to see which subassets you’re including in this bundle.
If you see some of these assets duplicated in different bundles, then you’re wasting space.
The good news is that it is easy to fix it.
The reason these subassets are duplicated is because they are not marked as addressables.
You see, you can mark these 4k textures as addressable and toss them into their own bundle.
The walls asset bundles would then depend on that single asset bundle containing the textures, instead of duplicating the content.
Here’s a diagram that explains the difference.
The result?
You’ll have smaller bundles, shorter iteration times and you’ll pay less to your greedy CDN.
That sounds neat.
Remember, this problem is more relevant if you’re unaware of it.
So, spend a bit of your time on checking out if this is an issue in your project.
In short:
This post is part of the Unity Performance Pillars series that is based on the Unity Performance Checklist.
Get your Unity Performance Checklist now to boost your game performance to avoid nasty 1-star reviews.
Next week I’ll show you some modern C# goodness to help you become a high-performing programmer.
~Ruben