bevy_rand 0.15.0

A plugin to integrate rand for ECS optimised RNG for the Bevy game engine.
Documentation
//! # `bevy_rand` Tutorial
//!
//! This is a tutorial covering the various parts of how to use the crate effectively,
//! from simple usage to more advanced patterns and concepts.
//!
//! Start at [chapter 0](ch00_overview) if you want to know more why `bevy_rand` exists,
//! else if you just want to learn how to use this crate, start at [chapter 1](ch01_choosing_prng)
//! instead.
//!
//! Note: The content provided is not stable and may change with new versions.

#[doc = include_str!("../tutorial/00-overview.md")]
pub mod ch00_overview {}

#[doc = include_str!("../tutorial/01-choosing-prng.md")]
pub mod ch01_choosing_prng {}

#[doc = include_str!("../tutorial/02-basic-usage.md")]
pub mod ch02_basic_usage {}

#[doc = include_str!("../tutorial/03-components-forking.md")]
pub mod ch03_components_forking {}

#[doc = include_str!("../tutorial/04-seeding.md")]
pub mod ch04_seeding {}

#[doc = include_str!("../tutorial/05-observer-driven-reseeding.md")]
pub mod ch05_observer_driven_reseeding {}