I have my assetbundle files myAssetBundle and myAssetBundle.manifest stored on my serwer.
I am using WWW.LoadFromCacheOrDownload to download myAssetBundle.
I can not just work out how to get AssetBundleManifest object from myAssetBundle.manifest file to check it prior to downloading myAssetBundle.
In a number of forum threads I have found the same piece of code:
WWW www = new WWW(path+manifestName);
yield return www;
manifest = (AssetBundleManifest)www.assetBundle.LoadAsset("AssetBundleManifest");
yield return null;
www.assetBundle.Unload(false);
Unfortunately www.assetBundle returns to me a null value.
What am I doing wrong? Could anyone give me some hint on this?