Has anyone heard of this happening? When I call ‘UnloadUnusedAssets’ my app gets odd affect of textures disappearing, or being replaced completely.
The app is a Cartoon Comic book, each page is a prefab that is dynamically loaded via Resource.LoadAsync, and then unloaded when the Page isn’t being viewed anymore.
The idea for this method is to reduce memory load as each page contains high quality textures which will crash the app if all are loaded in at startup. (for iOS).
This is how I load a page in:
var request : ResourceRequest = Resources.LoadAsync( GetPrefabName(lindex) );
while(request.isDone == false)
yield;
loadedPrefab = Instantiate(request.asset) as GameObject;
So, the problem is, when I try and unload a page like so:
It works fine, the system memory is decreased. But a couple of textures throughout the app are now missing, or have been completely replaced by a random texture, not only that but my Texture Renders will sometimes ‘untarget’ themselves from the page camera (it’s what I use to render my comic page). Whats odd though, is that these ‘missing’ textures are within other dynamically loaded pages (prefabs), meaning the app has to load in everything onto memory anyway, yet the texture may still be incorrect.
Hi. Firstly, the issue seems to appear on Android as well - that’s the platform I am working with. Secondly, apparently the problem is not just UnloadUnusedAssets thing, but more like unloading and loading assets at the “same time” issue. It means that when you instantiate some asset and have unloading activity running, the instantiated object is gonna be corrupted in some way (in my case I got, e.g. empty ngui atlases - there’s no difference between loading form Resources and loading from asset bundles).
The solution in my case was creating dedicated class that is managing loading and unloading assets. The assets can be instantiated only when there is no unloading unused assets in progress (so I use unload with yield) and unloading can be started only when there is no asset loading in progress.
I’m using Unity 5.3.4 and after separating mentioned above loading and unloading mechanisms the problem seems to be solved.
I may have solved my issue. I still need to do more internal tests - but it appears to work so far. So what I was doing was loading in a Prefab, and then Destroying that Prefab (GameObject), and then calling Resource.UnloadUnusedAssets, which theoretically should work fine. But those texture issues started appearing.
So I also get all GameObjet components within all the children on that prefab, and Destroy that too:
//instead of destorying entire prefab - cycle through children and destory them one by one
children = scene.GetComponentsInChildren.<Transform>();
print("[SERIAL] Object Count: " + children.length);
for(i = 0; i < children.length; i++){
Destroy(children*.gameObject);*
Debug.LogWarning(“[SERIAL] Collecting Garbage”); System.GC.Collect(); Like I said, it appears to be working okay now! Not sure why?! — UPDATE — This method doesn’t actually work, I can confirm.