bevy_center 0.1.0

A Bevy debug plugin that draws a colored marker to the center of the screen on startup
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

/// Center marker plugin
pub mod center_marker;

/// Commonly used stuff
pub mod prelude {
    #[doc(hidden)]
    pub use crate::center_marker::{CenterEntity, CenterMarkerPlugin};
}