Patricio Tapia

Results 1 comments of Patricio Tapia

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