I have started two coroutines to download two gifs, if the gif urls are different everything is fine. If I pass same urls second coroutine is not unpausing. Can we not download same file at same time?
UnityWebRequest www = new UnityWebRequest(path)
{
downloadHandler = new DownloadHandlerBuffer()
};
yield return www.SendWebRequest();
↧