https://github.com/smidgens/unity-extensions
Misc. type extensions for Unity.
https://github.com/smidgens/unity-extensions
extensions not-affiliated-with-the-guy-who-stole-my-shoes smidgenomics unity unity-extensions unity-plugin
Last synced: 4 months ago
JSON representation
Misc. type extensions for Unity.
- Host: GitHub
- URL: https://github.com/smidgens/unity-extensions
- Owner: Smidgens
- License: mit
- Created: 2022-07-15T23:40:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T14:43:47.000Z (over 3 years ago)
- Last Synced: 2025-01-31T03:38:35.476Z (over 1 year ago)
- Topics: extensions, not-affiliated-with-the-guy-who-stole-my-shoes, smidgenomics, unity, unity-extensions, unity-plugin
- Language: C#
- Homepage:
- Size: 89.8 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

# âšī¸ Features
* Various utility extensions for commonly used Unity and System types.
* Supports disabling extensions on a per-type basis: `EXT_0__`
**â Planned**
* [ ] Extensions for types defined outside Unity core module (Animation, UI, etc.) and preprocessor symbols to selectively enable them: `EXT_1__`
* [ ] Online documentation
# đĻ Install
1. Open Package Manager
2. Paste GitHub URL:\
`https://github.com/Smidgens/unity-extensions.git#`
# đ Use
See `Runtime` folder for full list of extensions.
#### â Disabling extensions for specific type
Add a preprocessor symbol to your project settings on the form: `EXT_0__`.
Example:
```cs
// disables extensions for System.Float
EXT_0_SYSTEM_FLOAT
```