A utility package that provides a series of noise functions and other utilities for use in wgpu shaders.
Use the import at the top of your wgsl file and Bevy takes care of the rest.
```wgsl
struct Material { scale: f32 };
@group(1) @binding(0)
var
@fragment
fn fragment(
mesh: MeshVertexOutput
) -> @location(0) vec4
let color_a = vec3(0.282, 0.51, 1.0);
let color_b = vec3(0.725, 0.816, 0.698);
let mixed = mix(color_a, color_b, f);
return vec4(mixed, 1.0);
} ```
The above shader is used by a material defined as such.
```rust
pub struct ScreenshotSimplex3dMaterial { #[uniform(0)] scale: f32, }
impl Material for ScreenshotSimplex3dMaterial { fn fragmentshader() -> ShaderRef { "shaders/screenshotsimplex3d_material.wgsl".into() } } ```
2-dimensional:
```wgsl
var value = perlinNoise2(vec2
3-dimensional:
```wgsl
var value = perlinNoise3(vec3
2-dimensional:
```wgsl
var value = simplexNoise2(vec2
3-dimensional:
```wgsl
var value = simplexNoise3(vec3
Voronoi and Noise: https://iquilezles.org/articles/voronoise/
```wgsl
var value = voronoise(vec2