noisy_bevy 0.14.0

Procedural noise primitives for Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "gpu")]
mod gpu;

#[cfg(feature = "gpu")]
pub use gpu::*;

#[cfg(feature = "cpu")]
mod cpu;

#[cfg(feature = "cpu")]
pub use cpu::*;