Please save me from going crazy.
No matter how many times I google, I always end up with (usually deprecated) versions of the following code:
IEnumerator setImage(string url) {
Texture2D texture = profileImage.canvasRenderer.GetMaterial().mainTexture as Texture2D;
WWW www = new WWW(url);
yield return www;
Debug.Log("Why on earh is this never called?");
www.LoadImageIntoTexture(texture);
www.Dispose();
www = null;
}
I'm using Unity 5 not 4. The URL I'm trying to load exists. Please shine some light on me.
How do I load an image over HTTP and display it in a UnityEngine.UI.Image?
setImage()
method? any code you may want to share? – VinoussetImage(url);
whereurl
is an URL to a JPEG or PNG. – Japanese