Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/CosineGradient
Cosine gradient generator for Unity
https://github.com/keijiro/CosineGradient
unity unity3d
Last synced: 29 days ago
JSON representation
Cosine gradient generator for Unity
- Host: GitHub
- URL: https://github.com/keijiro/CosineGradient
- Owner: keijiro
- License: unlicense
- Created: 2017-01-28T10:51:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-31T07:18:01.000Z (over 2 years ago)
- Last Synced: 2024-10-12T04:24:10.348Z (2 months ago)
- Topics: unity, unity3d
- Language: C#
- Homepage:
- Size: 75.2 KB
- Stars: 389
- Watchers: 25
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gradient - CosineGradient - Cosine gradient generator for Unity. (CSS)
README
CosineGradient
==============![gif](https://i.imgur.com/z0KYTCt.gif)
**CosineGradient** is a Unity package for generating cosine-based gradients.
The idea of cosine-based gradients is based on an article written by Íñigo
Quílez. See [the original article] for further details.[the original article]:
http://www.iquilezles.org/www/articles/palettes/palettes.htmInstallation
------------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.cosinegradient": "1.1.0"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.klak.cosinegradient": "1.1.0",
...
```