bevy_center

Crates.iobevy_center
lib.rsbevy_center
version0.1.1
sourcesrc
created_at2024-10-20 05:41:04.079227
updated_at2024-10-20 06:27:02.903117
descriptionA Bevy debug plugin that draws a colored marker to the center of the screen on startup
homepage
repositoryhttps://github.com/DMoore12/bevy_center
max_upload_size
id1415953
size5,124
Dawson Moore (DMoore12)

documentation

README

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();
}
Commit count: 14

cargo fmt