Addressable "Use Asset Database (fastest)" mode not working

Hi,

I’m not sure what is wrong but my addressable fastest mode doesn’t seem to work.
I have several prefabs that I marked as addressable. If I change anything in the prefab, say add a new component, it doesn’t reflect in the addressable version at runtime (in the editor). I have to rebuild the addressable asset before it will reflect. Worst still, if I mark a new asset as addressable, that asset won’t be available in the addressable system at runtime until I rebuild the asset database even though I’m using the fastest mode.
The platform I’m developing in is the android platform so my shaders will be rendered as pink on any object I load from the addressable system.

I’m not sure what’s wrong. If anyone can point me to the right direction, I’ll appreciate. The project is a new project. I just imported the addressable asset package. I’ve not done any settings.

So I figured out what’s wrong…

The addressable asset system is saving something to the player pref. That thing is what the editor is using to locate the asset in the asset database.

I was deleting the player pref keys on start :frowning:

2 Likes

You saved my life, I was deleting the playerprefs as well, thanks man!!

1 Like

Same. Thanks for helping out!