https://github.com/danielshervheim/unity-core-utils
A collection of common Unity scripts and extensions I've found myself continually rewriting.
https://github.com/danielshervheim/unity-core-utils
tools unity utilities
Last synced: 11 months ago
JSON representation
A collection of common Unity scripts and extensions I've found myself continually rewriting.
- Host: GitHub
- URL: https://github.com/danielshervheim/unity-core-utils
- Owner: danielshervheim
- License: bsd-3-clause
- Created: 2021-02-05T17:09:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-01T04:32:38.000Z (over 4 years ago)
- Last Synced: 2025-07-08T02:23:15.378Z (12 months ago)
- Topics: tools, unity, utilities
- Language: ShaderLab
- Homepage:
- Size: 5.75 MB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unity-core-utils
Please see the [readme](Packages/com.dss.core-utils/README.md) in the package directory for information on all of the included utilities.
## How To Install
The core-utils package uses the [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html) feature to import
dependent packages. Please add the following sections to the package manifest
file (`Packages/manifest.json`).
To the `scopedRegistries` section:
```
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
```
To the `dependencies` section:
```
"com.dss.core-utils": "1.6.12"
```
After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
],
"dependencies": {
"com.dss.core-utils": "1.6.12",
...
```