| Crates.io | bevy_center |
| lib.rs | bevy_center |
| version | 0.1.1 |
| created_at | 2024-10-20 05:41:04.079227+00 |
| updated_at | 2024-10-20 06:27:02.903117+00 |
| description | A Bevy debug plugin that draws a colored marker to the center of the screen on startup |
| homepage | |
| repository | https://github.com/DMoore12/bevy_center |
| max_upload_size | |
| id | 1415953 |
| size | 5,124 |
A Bevy debug plugin that draws a colored marker to the center of the screen on startup.
use bevy::prelude::*;
use bevy_center::prelude::*;
fn main() {
App::new()
// Draws a 2x2 pixel, red center marker
.add_plugins(CenterMarkerPlugin)
.run();
}