Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Latest commit

 

History

History
37 lines (22 loc) · 588 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 588 Bytes

Command Runner

  • cli コマンドを実行

Requirement

  • Unity 2017

Install

yarn add github:umm/command_runner

Usage

using UnityModule.Command;
using UnityEngine;

public class Sample {

    public void Run() {
        Debug.Log(Runner<string>.Run("git", "status"));
    }

}
  • Runner クラスの型引数に UniRx.IObservable<T> を指定すると UniRx による非同期処理を行います

License

Copyright (c) 2018 Tetsuya Mori

Released under the MIT license, see LICENSE.txt