spew 0.6.0

A simple helper for spawning objects in Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::type_complexity)]
#![allow(clippy::too_many_arguments)]
#![forbid(missing_docs)]
#![doc = include_str!("../readme.md")]

mod events;
mod plugin;
mod spawner;

/// Everything you need to get started
pub mod prelude {
    pub use crate::{
        events::{Delay, SpawnEvent},
        plugin::{SpewApp, SpewPlugin, SpewSystemSet},
    };
}