#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

#813 in Development tools

24 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
~454K SLoC