Cargo Features

[dependencies]
bevy_turborand = { version = "0.8.2", default-features = false, features = ["wyrand", "chacha", "serialize", "rand"] }
default = serialize, wyrand

These default features are set whenever bevy_turborand is added without default-features = false somewhere in the dependency tree.

wyrand default

Enables wyrand of turborand

turborand:

Enables Rng

Affects component::rng, global::rng

chacha

Enables chacha of turborand

turborand:

Enables ChaChaRng

Affects component::chacha, global::chacha

serialize default

Enables serde and serialize of turborand

turborand:

Enables serialisation/deserialisation

rand

Enables rand of turborand

turborand:

Enables compatibility wrappers for interop with rand

Affects traits::DelegatedRng.as_rand