private IEnumerator WaitForResponseD(WWW request)
{
yield return request;
if (request.error == null)
{
Debug.log(request.text);
}
else
{
Debug.log(request.error);
}
}
I’m using the above code which works fine in the editor and web player, but on windows phone it does not.
The coroutine triggers but when it yields nothing happens. No error nothing.
Has anyone encountered this before?