IEnumerator Start()
{
WWW www = new WWW(HOST_URL+ "?format=json");
yield return www;
Debug.Log("Teste"+www.text);
}
//it debugs on unity editor, but when a try to use this text on webgl, it does not work.
↧