https://github.com/lachee/unity-utilities
Collections of tools and utilites
https://github.com/lachee/unity-utilities
Last synced: 8 months ago
JSON representation
Collections of tools and utilites
- Host: GitHub
- URL: https://github.com/lachee/unity-utilities
- Owner: Lachee
- License: mit
- Created: 2022-05-20T02:53:16.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-01T03:04:38.000Z (over 1 year ago)
- Last Synced: 2025-03-25T22:22:02.309Z (about 1 year ago)
- Language: C#
- Size: 1.45 MB
- Stars: 16
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Lachee's Utilities
This package contains a collection of useful classes and tools that I have personally used throughout my games.
Originating from Party Crashers, I have been slowly building and involving this kit, and now with Unity Package Manager being "somewhat" stable, I decided to make a github repository so I can better track the changes and synchronise the numerous versions I have.
Since it is just a "collection of scripts", there isn't much in the ways of a manual or a theme for the package other than "hey thats useful". Since it is all under MIT, you are free to simply extract just the scripts you need, there is no dependencies amongst the files unless explicitly stated in the top of the file (ie: some of the custom editors).
# Usage
Since this is just a folder of scripts, you can use it how you need it. Check out the documentation for more information.
[https://lachee.github.io/unity-utilities/](https://lachee.github.io/unity-utilities/)
# Installation
#### OpenUPM
The [openupm registry](https://openupm.com) is a open source package manager for Unity and provides the [openupm-cli](https://github.com/openupm/openupm-cli) to manage your dependencies.
```
openupm add com.lachee.unity-utilities
```
#### Manual UPM
Use the Unity Package Manager to add a git package. Adding the git to your UPM will limit updates as Unity will not track versioning on git projects (even though they totally could with tags).
1. Open the Unity Package Manager and `Add Package by git URL...`
2. `https://github.com/Lachee/unity-utilities.git `
For local editable versions, manually clone the repo into your package folder. Note the exact spelling on destination name.
1. `git clone https://github.com/Lachee/unity-utilities.git Packages/com.lachee.utilities`
#### Unity Package
Go old school and download the Unity Package and import it into your project.
1. Download the `.unitypackage` from the [Releases](releases) or via the last run `Create Release` action.
2. Import that package into your Unity3D
# TODO
List of things I wish to implement:
- More Surrogates for Binary Formatter
- My PlayerPrefs from Cross-Platform as it supports Serialization / Deserialization
- Fix to my Automatic Namespacer with better support for rules
- I should rewrite this
- Configuration panel for stuff? Probably not required
- Implement https://forum.unity.com/threads/detecting-textmesh-pro.755501/ so i can add Input features
- Asset Bin: Allows you to quickly grab and store assets for building stuff
- Right Click - Jump to Definition