#colored #debugging #bevy #center #bevy-plugin #marker #startup

bevy_center

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

2 releases

0.1.1 Oct 20, 2024
0.1.0 Oct 20, 2024

#817 in Development tools

Download history 192/week @ 2024-10-14 92/week @ 2024-10-21

284 downloads per month

MIT license

5KB
56 lines

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();
}

Dependencies

~25MB
~463K SLoC