Hi - I am getting this error with the code below:
but it doesn’t happen every time. It doesn’t appear to have anything to do with my code (but hey - could be )
In the Console at the bottom it also says:
Does this make sense to anyone? There is no WWW.error reported.
function LoadThumbTexture(url){
wwwImage = WWW(url);
wwwActive = true;
yield wwwImage;
if (wwwImage.error == null) {
tempTexture = new Texture2D(256, 128);
wwwImage.LoadImageIntoTexture(tempTexture);
albumThumbTexture_array.Push(Instantiate(tempTexture));
} else {
print(wwwImage.error);
}
wwwActive = false;
}