bevy_vfx_bag/
lib.rs

1#![allow(clippy::too_many_arguments)] // Bevy fns tend to have many args.
2#![deny(clippy::unwrap_used)] // Let's try to explain invariants when we unwrap (so use expect).
3#![deny(missing_docs)] // Let's try to have good habits.
4#![doc = include_str!("../README.md")]
5
6/// Post processing effects.
7pub mod post_processing;
8
9mod plugin;
10
11pub use plugin::BevyVfxBagPlugin;
12
13/// Utilities.
14pub(crate) mod util;