A collection of small, focused helper packages for Unity.
Each helper is distributed as a separate git branch containing a standalone Unity package.
The main branch is documentation-only and serves as an entry point to the project.
- main — documentation only
- one branch = one Unity package
- Packages are installed via
helpers-installeror directly from their branch via Unity Package Manager
helpers-installer— Editor window for installing other helpers from this and other reposhelper-functions— Common utility extensions (math, vectors, etc.)pretty-logging— Improved / formatted logging helpersextended-file-logger— File logging supportunotes— Lightweight editor notes utility
Install helpers-installer first if you want a GUI-based way to add other helpers.
- Open Window → Package Manager
- Click + → Add package from git URL…
- Use the repo URL with a branch name:
https://github.com/NateArasti/UnityHelpers.git#helpers-installer
Add desired row to manifest.json like this:
{
"dependencies": {
"com.natearasti.helpers-installer":
"https://github.com/NateArasti/UnityHelpers.git#helpers-installer"
}
}