How can I Instanciate a Prefab as it gets loaded from a LoadAssetsAsync,How can I Instanciate a Prefab as it gets loaded from a LoadAssetsAsync with Addressables?

Hello,
I am making a tool that uses a lot of large Audio Files, and I’m trying to load them one at a time asynchronously.

My goal is to have it so when the game is started, it checks all the Addressables labeled “Playlist” and loads them all, but instead of waiting until they are all loaded to Instantiate them, I want to be able to Instantiate them as they are loaded by the LoadAssetsAsync.

Is there any way to do this?

Thank you! ,

I have not worked with the Adressable API of Unity, but in my opinion you might want to subdivide them in multiple label and have your own code (ScriptableObject) make the resolution of the playlist item.