IEnumerator ILoadText(string url, LoadTextAction action) { WWW www = new WWW(url); yield return(www); if (!string.IsNullOrEmpty(www.error)) { Debug.Log("www.error" + www.error); yield break; } action(www.text); www.Dispose(); }
public void LoadText(string url, LoadTextAction action) { StartCoroutine(ILoadText(url, action)); }