IEnumerator LoadImg()
{
using (WWW www = new WWW(url))
{
while(!www.isDone)
{
Debug.Log(www.progress);
yield return null;
}
yield return www;
}
}