To be frank, is there a way to make an array of WWW objects? I can’t seem to figure out how to put this into an array like an integer which doesn’t need to follow the format of:
WWW website = new WWW(url);

Something like:

var arwww : WWW[] = new WWW[10];

function Start () {
	for (var i = 0; i < arwww.Length; i++) {
		var url = "www.mysite.com/stuff" + i + ".jpg";
		arwww *= new WWW(url);*
  • }*
    }