Hello! In our game we have characters with cosmetic skins. Since yesterday we had the skins into 1 single texture, but it was getting bigger and bigger so we decided to have each skins in a different texture and load them with addressables in runtime, so I included the Addressables Extensions and the On-Demand Loading Extensions packages in order to do that. Everything works perfectly, awesome work on you side <3, I can see how the live graphic memory has decreased from 340MB to 64-96MB, which is nice, but the thing is that when switching skins for the first time you can see the blurry LoadingPlaceholderAssets for like a fraction of second, I guess due to the textures not yet loaded.
So my question is: is there a way to preload in background, let's say, all the skins for example when the player enters the customization menu, that the package provides? Or is this something we should take care by ourselves? I couldn't find anything on the documentation (I guess it's because the package it quite new, still experimental) and I am not an experienced user with addressables (yet), so right now I just follow the instructions here.
Thanks a lot!