Project

ubb

0.0
No commit activity in last 3 years
No release in over 3 years
CLI for helping batch building from Unity Editor
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
>= 0

Runtime

~> 4.3
 Project Readme

Ubb

Helper for Unity batch build.

Gem Version

Description

Unity Editor からビルドしたりパッケージを入出力する時に使うツールです。

Installation

Install it yourself as:

$ gem install ubb

Usage

$ ubb export -o hoge.unitypackage Plugins/hoge
$ ubb import hoge.unitypackage

Unity のプロジェクトフォルダは、明示的に指定されなければカレントディレクトリ以下で、最初に見つかったものを自動的に選択します。 明示的に指定するには --project PATH オプションを使用してください。

export

指定したフォルダ及びファイルを .unitypackage としてエクスポートします。

ubb export -o '出力ファイル名' 'パッケージに含むファイル名(フォルダ可&複数指定可)'

import

指定した .unitypackage をプロジェクトにインポートします。

ubb import 'パッケージファイル名'

build

指定したプロジェクトのビルドを行います。

ubb build --output '出力先フォルダ' --target [ios] --config [development|release|distribution]
  • target
    • ビルドターゲットの指定。現在は ios のみ。
  • config
    • ビルドコンフィグの指定。

Contributing

  1. Fork it ( https://github.com/fum1h1ro/ubb/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request