You can edit manifest.json
to add UniUI and example packages.
{
"dependencies": {
"com.boscohyun.uniui": "https://github.com/boscohyun/UniUI.git?path=Assets/Plugins/UniUI/Scripts#main",
"com.boscohyun.uniui.examples": "https://github.com/boscohyun/UniUI.git?path=Assets/Plugins/UniUI/Examples#main",
}
}
If you want a specific release version(e.g.,0.1.0
), you can add it like below.
{
"dependencies": {
"com.boscohyun.uniui": "https://github.com/boscohyun/UniUI.git?path=Assets/Plugins/UniUI/Scripts#0.1.0",
"com.boscohyun.uniui.examples": "https://github.com/boscohyun/UniUI.git?path=Assets/Plugins/UniUI/Examples#0.1.0",
}
}
If you are using openupm, use the command below.
> openupm add com.boscohyun.uniui
> openupm add com.boscohyun.uniui.examples