Hi,
I’m trying to use WWW to get some xmls or images from web.
It works fine on Unity iPhone 1.7 but not in Unity 3.3.
WWW always failed to get any data from any web and return message like this.
“Resolving host timed out: www.google.co.kr”
public string pURL = "http://www.google.co.kr/images/nav_logo70.png";
IEnumerator Start() {
WWW pData = new WWW(pURL);
yield return pData;
print(pData.text);
}
Did I miss some settings for using WWW in Unity 3.3?
Thank you.