Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zigurous/unity-ui-toolkit
🖥️🖱️ Scripts and utilities for creating UI in Unity projects.
https://github.com/zigurous/unity-ui-toolkit
assets package ui unity
Last synced: about 2 months ago
JSON representation
🖥️🖱️ Scripts and utilities for creating UI in Unity projects.
- Host: GitHub
- URL: https://github.com/zigurous/unity-ui-toolkit
- Owner: zigurous
- License: mit
- Created: 2021-06-29T04:46:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T01:25:51.000Z (4 months ago)
- Last Synced: 2024-08-14T03:27:37.246Z (4 months ago)
- Topics: assets, package, ui, unity
- Language: C#
- Homepage: https://docs.zigurous.com/com.zigurous.ui
- Size: 388 KB
- Stars: 14
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# UI Toolkit
[![](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/zigurous/unity-ui-toolkit) [![](https://img.shields.io/github/package-json/v/zigurous/unity-ui-toolkit)](https://github.com/zigurous/unity-ui-toolkit/releases) [![](https://img.shields.io/badge/docs-link-success)](https://docs.zigurous.com/com.zigurous.ui) [![](https://img.shields.io/github/license/zigurous/unity-ui-toolkit)](https://github.com/zigurous/unity-ui-toolkit/blob/main/LICENSE.md)
The **UI Toolkit** package contains scripts and utilities for creating UI in Unity projects. The package is intended to solve common problems that arise when developing UI and menus. The package is still early in development, and more functionality will be added over time.
## Reference
- [Menu Tools](https://docs.zigurous.com/com.zigurous.ui/manual/menus)
- [Letterboxing](https://docs.zigurous.com/com.zigurous.ui/manual/letterboxing)
- [Screen Size](https://docs.zigurous.com/com.zigurous.ui/manual/screen-size)## Installation
Use the Unity [Package Manager](https://docs.unity3d.com/Manual/upm-ui.html) to install the **UI Toolkit** package.
1. Open the Package Manager in `Window > Package Manager`
2. Click the add (`+`) button in the status bar
3. Select `Add package from git URL` from the add menu
4. Enter the following Git URL in the text box and click Add:```
https://github.com/zigurous/unity-ui-toolkit.git
```## Namespace
Import the package namespace in each script or file you want to use it. You may need to regenerate project files/assemblies first.
```csharp
using Zigurous.UI;
```