Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. List<byte[]> StartDownload() {
  2. List<byte[]> result = new List<byte[]> ();
  3. for (int i = 0; i < 10; ++i) {
  4. WWW request = new WWW("http://www.example.com/" + i + ".png");
  5. result.Add(request.texture);
  6. }
  7. return result;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement