AddressableDownloader_Build_V1.2.framework.js:2 Asset Bundle download is complete, but no data have been received
I have been getting this error that my addressables are being downloaded but no data is being received, I dont get it. How is this possible kindly do explain and help me work out a solution for this, here is my code for it
IEnumerator DownloadAddressables()
{
yield return null;
Addressables.Initialize().Completed += AddressableManager_Completed;
}
private void AddressableManager_Completed(AsyncOperationHandle<UnityEngine.AddressableAssets.ResourceLocators.IResourceLocator> obj)
{
avatorReferance.Instantiate().Completed += (go) =>
{
avatorObject = go.Result;
Debug.Log("Our Addressable GameObject " + avatorObject);
};
}
}