Add bevy-inspector-egui so I can fiddle with values easier

This commit is contained in:
2025-07-27 09:45:33 -05:00
parent 430b77be2e
commit 584a30f7f8
2 changed files with 4 additions and 0 deletions

View File

@@ -5,3 +5,4 @@ edition = "2021"
[dependencies]
bevy = { version = "0.16", features = ["dynamic_linking"] }
bevy-inspector-egui = "0.32.0"

View File

@@ -1,6 +1,7 @@
use bevy::{prelude::*, window::WindowResolution};
use asteroids::{config::WINDOW_SIZE, AsteroidPlugin};
use bevy_inspector_egui::{bevy_egui::EguiPlugin, quick::WorldInspectorPlugin};
fn main() {
App::new()
@@ -12,5 +13,7 @@ fn main() {
..default()
}))
.add_plugins(AsteroidPlugin)
.add_plugins(EguiPlugin::default())
.add_plugins(WorldInspectorPlugin::new())
.run();
}