- Wrapper for
UnityEngine.Networking.UnityWebRequestwith UniRx.
yarn add "umm/unirx_observableunitywebrequest#^1.0.0"using UniRx;
public class Sample {
void Start() {
ObservableUnityWebRequest.GetText("https://www.google.com/").Subscribe(
(responseText) => {
Debug.Log(responseText);
}
);
}
}- Provide some methods for defined in
UnityEngine.Networking.UnityWebRequest.
Copyright (c) 2017 Tetsuya Mori
Released under the MIT license, see LICENSE.txt