Questions tagged [addressable]
The addressable tag has no summary.
21 questions
0
votes
0
answers
63
views
How do I use Addressables AssetReference RuntimeKey to compare the loaded assets with the AssetReference
I will use Addressables to load multiple assets of type Bag that share the same AssetLabelReference.
So I will load them using ...
1
vote
0
answers
51
views
Reserved Memory Keep Increasing When Loading the Same GameObject Using Unity Addressables
I'm trying to learn how to use Addressables in Unity to improve memory usage, but there's something I don't understand.
I use ...
0
votes
0
answers
118
views
Unable to determine cause of memory leak in Unity when using Addressables. Can anyone give suggestions on what the cause might be?
I'm creating a simple bullet hell game for Android and I ran into an issue when diagnosing my game using the Memory Profiler where memory usage was increasing after each play-through. I had calls to ...
1
vote
0
answers
118
views
Why are my Addressables working for PC Standalone build but not Android?
I have a CCD pipeline set up using Addressables and they seem to load perfectly fine from Unity's CCD buckets but when I build for Android and test on my mobile device, it leads to a 400 error.
Here ...
0
votes
1
answer
173
views
How do I load assets in a specific scene using Addressables without needing to instantiate anything given a handful of different GameObjects?
I’ve looked at several tutorials regarding Addressables and it seems that loading an asset revolves around referencing it in the inspector, loading it in, and then finally instantiating it but putting ...
1
vote
0
answers
57
views
Minimizing patch size with Addressables
I'm working on a cross-platform Unity game for release on mobile and on a console. Our game content is all loaded through Addressables. We want to leverage Addressables to minimize the size of patches ...
3
votes
1
answer
944
views
Load a Single Sprite using Addressables
I've been dabbling with Addressables for a while, and overall everything works fine with AssetReferenceT - I can load Textures and just about anything else, but for ...
0
votes
0
answers
162
views
ReleaseInstance is not deleting the object instantiated from an Addressable
I have this simple script, which is working perfectly when I press I and it instantiates an addressable game object. But I am not sure why it is not deleting it when I press D. I confirmed that on ...
0
votes
1
answer
455
views
How to reference assets between multiple asset bundle in Unity?
I am trying to figure out how to properly package my bundles. My goal is to try and avoid necessary duplication of assets and cut down on download time of the assets by having smaller bundles. The ...
1
vote
0
answers
81
views
Diagnosing mystery Implicit references in Addressables
I am working on a game with a modest number of assets where the majority of the game's assets are not managed through Addressables, but some rarely used tutorial UI prefabs will be managed through ...
1
vote
1
answer
1k
views
"Graphics device is null" error on a Linux dedicated server build
In my project I am trying to build a dedicated server build to deploy to Multiplay hosting services.
Build target is Linux OS,build settings are default, scripting backend set to IL2CPP.
When ...
1
vote
0
answers
835
views
Scene loading finishes (90%) in 1 frame, but isn't isDone until 3 frames later
I am loading scenes async using addressables like so
...
0
votes
0
answers
1k
views
UnityEngine.AddressableAssets.InvalidKeyException
Unity version 2020.3.20f1.
I am getting this error in the console. The game is working fine in Unity but not in the apk. In apk the scene is loading finely but throwing this error and the characters ...
1
vote
2
answers
2k
views
Unity addressables errors with Android split binary
We're using Unity 2020.3.18f1 and Addressables 1.19.4 (we've also tried 1.18.15)
Google requires us to split the game up before uploading it to the google play store. We built the game into an .apk ...
0
votes
1
answer
4k
views
How to clear Addressables Cache?
I am loading my assets and tile information through YAML files.
While working on the game, I need to quickly change some values and test them in-game, and I can re-load the YAML information without ...