Open shaneTF opened 6 years ago
Go to file "UnityThreadHelper.cs", then find the next code
isWebPlayer = Application.isWebPlayer;
replace with
if (Application.platform == RuntimePlatform.WebGLPlayer)
isWebPlayer = true;
else
isWebPlayer = false;
that's all
Application.isWebPlayer was removed from unity api and breaks application. Is there a fix?