https://github.com/alexmalyutindev/unity-fbm-clouds
FBM Parallax Clouds for Unity build-in render pipeline.
https://github.com/alexmalyutindev/unity-fbm-clouds
shader shaderlab shaders unity upm upm-package
Last synced: 8 months ago
JSON representation
FBM Parallax Clouds for Unity build-in render pipeline.
- Host: GitHub
- URL: https://github.com/alexmalyutindev/unity-fbm-clouds
- Owner: alexmalyutindev
- License: mit
- Created: 2021-09-10T16:44:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-18T23:17:43.000Z (almost 5 years ago)
- Last Synced: 2025-01-31T04:02:34.020Z (over 1 year ago)
- Topics: shader, shaderlab, shaders, unity, upm, upm-package
- Language: HLSL
- Homepage:
- Size: 10.2 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FBM Parallax Clouds for Unity build-in render pipeline.
==========
[](https://github.com/alexmalyutindev/unity-fbm-clouds/actions/workflows/upm-ci.yml)
[](https://github.com/alexmalyutindev/unity-fbm-clouds/releases)
Clouds are using Fractal Brownian Motion and Raymarching prarallax offset method:

Installation
------------
### Using git:
Please add the following line to `dependencies` sections to the package manifest file (`Packages/manifest.json`).
- `"com.alexmalyutindev.fbm-parallax-clouds": "https://github.com/alexmalyutindev/unity-fbm-clouds.git#latest"`
Or, you can add this package using PackageManager `Add package from git URL` option:
- `https://github.com/alexmalyutindev/unity-fbm-clouds.git#latest`
### Via NPM Registry:
Please add the following sections to the package manifest file (`Packages/manifest.json`).
To the `scopedRegistries` section:
```
{
"name": "Alex Malyutin",
"url": "https://registry.npmjs.com",
"scopes": [ "com.alexmalyutindev" ]
}
```
To the `dependencies` section:
```
"com.alexmalyutindev.fbm-parallax-clouds": "1.0.0"
```
References
----------
- [Fractal Brownian Motion](https://thebookofshaders.com/13/)
- [Parallax](https://catlikecoding.com/unity/tutorials/rendering/part-20/)
License
-------
This project is MIT License - see the [LICENSE](LICENSE.md) file for details