I am trying to pull a RSS feed and place that on a wall of a scene i am working on - for some reason the RSS feed keeps coming back empty, and i dont know why
var url = "//"http://rss.cnn.com/rss/cnn_topstories.rss";
var dat;
var www: WWW;
function Start(){
www = new WWW(url);
yield;
if([url]www.isDone[/url]){
dat = [url]www.data;[/url]
Debug.Log("RSS Data: " + dat);
}
}
ive been testing it with the CNN website RSS feed to no avail - what am i doing wrong?