UniUI Examples
UniUI Examples provides sample implementations and use cases for the UniUI UI management system. Perfect for developers looking to quickly understand how to integrate and use UniUI in their projects. Includes practical examples demonstrating common UI patterns and best practices for efficient UI workflow in Unity.
com.boscohyun.uniui.examples 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/examples.git?path=Assets/Plugins/UniUI/Examples README Markdown
Copy this to your project's README.md
## Installation
Add **UniUI Examples** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/examples.git?path=Assets%2FPlugins%2FUniUI%2FExamples
```
[](https://www.pkglnk.dev/pkg/examples)Dependencies (1)
README
UniUI
UPM
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",
}
}
OpenUPM
If you are using openupm, use the command below.
> openupm add com.boscohyun.uniui
> openupm add com.boscohyun.uniui.examples
No comments yet. Be the first!