Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/lineargradient
Utility extensions for Unity standard Gradient class
https://github.com/keijiro/lineargradient
unity unity3d
Last synced: 4 months ago
JSON representation
Utility extensions for Unity standard Gradient class
- Host: GitHub
- URL: https://github.com/keijiro/lineargradient
- Owner: keijiro
- License: unlicense
- Created: 2020-09-16T01:26:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T05:21:47.000Z (over 4 years ago)
- Last Synced: 2024-10-10T10:41:34.610Z (4 months ago)
- Topics: unity, unity3d
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 47
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LinearGradient
==============![screenshot](https://i.imgur.com/LYPglYDm.jpg)
Utility extensions for Unity standard Gradient class
Installation
------------This package uses the [scoped registry] feature to resolve package
dependencies. Please add the following sections to the manifest file
(Packages/manifest.json).[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html
To the `scopedRegistries` section:
```
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
```To the `dependencies` section:
```
"jp.keijiro.klak.lineargradient": "1.0.2"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.klak.lineargradient": "1.0.2",
...
```