1.1.2 • Published 8 years ago
@umm/unirx_observableunitywebrequest v1.1.2
What?
UniRx.ObservableUnityWebRequestを提供します。UniRx.ObservableWWWのUnityWebRequest版です。
Why?
- UnityWebRequest 版が無かったので。
Install
$ npm install github:umm-projects/unirx_observableunitywebrequest.gitUsage
using UniRx;
public class Sample {
void Start() {
ObservableUnityWebRequest.GetText("https://www.google.com/").Subscribe(
(responseText) => {
Debug.Log(responseText);
}
);
}
}UnityWebRequestが提供する主立ったメソッドをラップしています。
License
Copyright (c) 2017 Tetsuya Mori
Released under the MIT license, see LICENSE.txt