#debugging #bevy #bevy-plugin #center #screen #marker #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

#1591 in Development tools

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

~26MB
~482K SLoC