Is It possible to access loaded assetBbundles after loading a new level? I ask this because I know asset bundles remain in memory until we call Unload() function. If not why doesn't unity unload theme after loading new levels?
Thanks in advance.
Is It possible to access loaded assetBbundles after loading a new level? I ask this because I know asset bundles remain in memory until we call Unload() function. If not why doesn't unity unload theme after loading new levels?
Thanks in advance.
Yes, you can. All you need to do is keep the reference to them - ie, make sure that the script you use to download and instantiate the AssetBundles calls DontDestroyOnLoad, so you still have it in the next level.