I’m trying to create a retry mechanism for asset bundle with the WWW class. When an error is detected, in this case, the internet connection is not available, I create a new WWW object.
However, if I unplug the network to force retry then plug it in again, the retry always fail until I restart the game, or stop and replay in the Editor.
This does not seem to happen with WebClient. Anyone has the same problem?
The code to create WWW is very simple:
WWW www = new WWW(url);
yield return www;
Can you post the error handling code as well?
– FortisVenaliter