- cli コマンドを実行
- Unity 2017
yarn add github:umm/command_runner
using UnityModule.Command;
using UnityEngine;
public class Sample {
public void Run() {
Debug.Log(Runner<string>.Run("git", "status"));
}
}
Runner
クラスの型引数にUniRx.IObservable<T>
を指定すると UniRx による非同期処理を行います
Copyright (c) 2018 Tetsuya Mori
Released under the MIT license, see LICENSE.txt