Expand description
Plugin for integrating rand_core::RngCore PRNGs into bevy. Must be newtyped to support bevy_reflect::Reflect.
Structsยง
- Entropy
Plugin - Plugin for integrating a PRNG that implements
RngCoreinto the bevy engine, registering types for a global resource and entropy components. - Entropy
Relations Plugin Pluginfor setting up relations/observers for handling related Rngs. It takes two generic parameters, the first is theSourceRng, which is the algorithm for the source Rng entity, and then the second is theTargetRng, which is the algorithm for the targets. It follows a One to One/Many relationship model, going fromSourcetoTarget, whereSourcecan have one or manyTargets.