Application start time got worse then with resources

Hello everyone!

My project was using resources, but i noticed, that at some point time at “black screen” at launch and time to get to the “lobby” is got realy big. So I decided use local addressables instead of resources. After the implementation startup time got… BIGGER :0 But all manuals and guides says “Adressables = faster startup application speed ant etc”.
Who faced similar? Thanks for the answers

Up

Addressables does not run anything during boot up, where the Resources initialises there.
However Addressables does have to spend time during Initialisation step. This happens when you call Addressables.initialiseAsync or any other Addressables API call. I do not know any numbers exactly, but it is possible that this is longer than the Resources init step. But will not happen during boot up.

I cannot personally think of much that could help you.
If you still have Assets in Resources and using Addressables to load from Resources, then this will not mitigate the startup of Resources.
If you have any RuntimeinitialiseOnLoad running, or Awake methods in the boot Scene. These too could impact your startup time.