Created
March 13, 2015 01:19
-
-
Save neuecc/3ded460852776b0a99db to your computer and use it in GitHub Desktop.
4つずつダウンロード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 沢山の画像のURLリスト | |
var imageList = Enumerable.Range(1, 490).Select(x => x.ToString()); | |
imageList.ToObservable() | |
.Buffer(4) | |
.Select(xs => xs.Select(x => ObservableWWW.GetWWW(x)).WhenAll()) | |
.Concat() | |
.SelectMany(xs => xs, (_, www) => www.texture) | |
.Subscribe(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment