| Package | Description |
|---|---|
| com.bluecadet.hap | GPU-compressed HAP video playback |
| com.bluecadet.spring | Physics-based spring animations |
| com.bluecadet.touchscreen | Multi-touch input module for touchscreen installations |
| com.bluecadet.uiblur | Kawase blur effect for UI elements (URP) |
| com.bluecadet.uiblur-hdrp | Kawase blur effect for UI elements (HDRP) |
| com.bluecadet.utils | Utility functions and helpers |
Install with the openupm CLI:
openupm add com.bluecadet.springOr add the scoped registry manually to Packages/manifest.json:
{
"scopedRegistries": [
{
"name": "OpenUPM",
"url": "https://package.openupm.com",
"scopes": ["com.bluecadet"]
}
],
"dependencies": {
"com.bluecadet.spring": "0.1.0"
}
}The scoped registry only needs to be added once per project regardless of how many com.bluecadet packages you install.
Add the following to Packages/manifest.json, replacing [PACKAGE_NAME] with the package folder name and [RELEASE_TAG] with the version tag:
{
"dependencies": {
"com.bluecadet.spring": "https://github.com/bluecadet/unity-packages.git?path=Packages/[PACKAGE_NAME]#[RELEASE_TAG]"
}
}For example, to install com.bluecadet.spring at version 0.1.0:
{
"dependencies": {
"com.bluecadet.spring": "https://github.com/bluecadet/unity-packages.git?path=Packages/com.bluecadet.spring#com.bluecadet.spring@0.1.0"
}
}See CONTRIBUTING.md for the full release process.