包含DDD框架的實作以及相關的測試
包含一些常用的工具庫
相依Zenject、UniRx、MessagePipe、UniTask
如果採用 PackageManager則不需要自己Import其他相依插件,會自動安裝
import from PackageManager see here
Description | Status |
---|---|
Tests and Build |
Unity 版本: 2021.3.3f1
RPG Module: https://github.com/L1247/RPG-Module
from Unity Package : https://github.com/L1247/rStarUtility/releases
- open Edit/Project Settings/Package Manager
- add a new Scoped Registry (or edit the existing OpenUPM entry)
Name: package.openupm.com
URL: https://package.openupm.com
Scope(s):
com.svermeulen.extenject
com.cysharp.unitask
com.cysharp.messagepipe
com.cysharp.messagepipe.zenject
com.neuecc.unirx
- click +
- paste scope
- click Save (or Apply)
https://github.com/L1247/rStarUtility.git?path=Assets/rStarUtility
For example, modify Packages/manifest.json
as the following:
{
"scopedRegistries": [
{
"name": "package.openupm.com",
"url": "https://package.openupm.com",
"scopes": [
"com.cysharp.messagepipe",
"com.cysharp.messagepipe.zenject",
"com.cysharp.unitask",
"com.openupm",
"com.neuecc.unirx",
"com.svermeulen.extenject"
]
}
],
"dependencies": {
"com.rstar.rstarutility": "https://github.com/L1247/rStarUtility.git?path=Assets/rStarUtility"
}
}