Skip to content

moncastroq/unirx_observableunitywebrequest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UniRx ObservableUnityWebRequest

What

  • Wrapper for UnityEngine.Networking.UnityWebRequest with UniRx.

Install

yarn add "umm/unirx_observableunitywebrequest#^1.0.0"

Usage

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.

License

Copyright (c) 2017 Tetsuya Mori

Released under the MIT license, see LICENSE.txt

About

Provide UniRx wrapper for UnityWebRequest

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%