Cargo Features
[dependencies]
bevy_rand = { version = "0.8.0", default-features = false, features = ["experimental", "thread_local_entropy", "serialize", "rand_chacha", "rand_pcg", "rand_xoshiro", "wyrand"] }
- default = serialize, thread_local_entropy
-
These default features are set whenever
bevy_rand
is added without
somewhere in the dependency tree.default-features = false - experimental
-
Affects
bevy_rand::observers
,plugin::LinkedEntropySources
… - thread_local_entropy default
-
Enables rand_chacha
- serialize default
-
Enables serde and serde_derive, serde1 of rand_core
- rand_chacha
-
Enables rand_chacha of bevy_prng
- rand_pcg
- rand_xoshiro
-
Enables rand_xoshiro of bevy_prng
- wyrand