diff --git a/src/game/debug.rs b/src/game/debug.rs index 08b3eb6..202c153 100644 --- a/src/game/debug.rs +++ b/src/game/debug.rs @@ -1,7 +1,7 @@ use bevy::prelude::*; -use bevy_inspector_egui::*; +// use bevy_inspector_egui::*; use bevy_prototype_debug_lines::DebugLinesPlugin; -use bevy_rapier2d::prelude::*; +// use bevy_rapier2d::prelude::*; mod terrain; @@ -12,8 +12,8 @@ pub struct DebugPlugin; impl Plugin for DebugPlugin { fn build(&self, app: &mut App) { app.add_plugin(DebugLinesPlugin::default()) - .add_plugin(RapierDebugRenderPlugin::default()) - .add_plugin(WorldInspectorPlugin::new()) + // .add_plugin(RapierDebugRenderPlugin::default()) + // .add_plugin(WorldInspectorPlugin::new()) .add_plugin(TerrainDebugPlugin); } }