#debugging #bevy #center #bevy-plugin #colored #screen #bevy-debug

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

#820 in Development tools

Download history 232/week @ 2024-10-15 52/week @ 2024-10-22 5/week @ 2024-10-29 19/week @ 2024-11-05

308 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

~24MB
~453K SLoC