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

umm/command_runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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