Pull to refresh

Comments 1

Вместо
  WWW request = new WWW(_RecognizeRequestUrl, data, headers);
  yield return new WaitUntil(() => request.isDone);

уместней было бы
  WWW request = new WWW(_RecognizeRequestUrl, data, headers);
  yield return request;

:)
Sign up to leave a comment.