Crate bevy_center

Source
Expand description

§Bevy Center

crates.io docs license crates.io

A Bevy debug plugin that draws a colored marker to the center of the screen on startup.

§Usage

use bevy::prelude::*;
use bevy_center::prelude::*;

fn main() {
    App::new()
        // Draws a 2x2 pixel, red center marker
        .add_plugins(CenterMarkerPlugin)
        .run();
}

Modules§

center_marker
Center marker plugin
prelude
Commonly used things