Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anchan828/unity-dll-creator
Module ManagerのためのDLL作成ツール
https://github.com/anchan828/unity-dll-creator
Last synced: about 2 months ago
JSON representation
Module ManagerのためのDLL作成ツール
- Host: GitHub
- URL: https://github.com/anchan828/unity-dll-creator
- Owner: anchan828
- License: mit
- Created: 2014-12-09T17:34:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-12T18:42:51.000Z (about 10 years ago)
- Last Synced: 2023-03-15T19:10:42.375Z (almost 2 years ago)
- Language: JavaScript
- Size: 160 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Unity側でコンパイルされるとgulpが検知してModuleManager用のDLLを生成してくれる的な。
## Step 1
[gulp.js](http://gulpjs.com/)をインストール
## Step 2
package.jsonのある場所で
```sh
$ npm install
```## Step 3
module-config.jsonを編集
```json
{
"version": "0.0.0",
"organisation": "kyusyukeigo",
"module": "MyFirstModule",
"packageType": "UnityExtension",
"unityversions": [
"4.6",
"5.0"
],
"defines": {
"4.6": [
"UNITY_4_6"
],
"5.0": [
"UNITY_5_0"
],
"all": [
"DEBUG"
]
}
}
```キー|説明
:---|:---
version| モジュールのバージョン
organisation|組織名
module|モジュール名
packageType| UnityExtension固定
unityversions| 使用できるUnityパージョン
defines|定義。バージョン毎と、すべてのバージョンでの定義ができる## Step 4
```sh
$ glup
```
これでwatch状態になります## Step 5
スクリプトを編集。コンパイルされるごとにモジュール用のDLLが生成されます。
生成先はbuildフォルダ。