We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnityWebRequest.isNetworkError API已经被弃用,推荐使用 UnityWebRequest.result == UnityWebRequest.Result.ConnectionError代替,建议修改为
UnityWebRequest.isNetworkError
UnityWebRequest.result == UnityWebRequest.Result.ConnectionError
#if UNITY_2020_2_OR_NEWER if (m_WebRequest.result == UnityWebRequest.Result.ConnectionError) #else if (m_WebRequest.isNetworkError) #endif
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UnityWebRequest.isNetworkError
API已经被弃用,推荐使用UnityWebRequest.result == UnityWebRequest.Result.ConnectionError
代替,建议修改为The text was updated successfully, but these errors were encountered: