HI,
I have an assetbundle thats loaded into a scene. What happens to it when i load a new scene ? Can i use it in that new scene without reloading it ? Does it only unload when I use assetbundle.unload ? Thanks.
HI,
I have an assetbundle thats loaded into a scene. What happens to it when i load a new scene ? Can i use it in that new scene without reloading it ? Does it only unload when I use assetbundle.unload ? Thanks.
No, unless you call DontDestroyOnLoad() function on your gameObject like this:
function Awake () {
DontDestroyOnLoad (gameObject);
}
or on your assetBundle loader.