aboutsummaryrefslogtreecommitdiff
path: root/src_testbed/debug_render.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src_testbed/debug_render.rs')
-rw-r--r--src_testbed/debug_render.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src_testbed/debug_render.rs b/src_testbed/debug_render.rs
index 135529f..ff884e2 100644
--- a/src_testbed/debug_render.rs
+++ b/src_testbed/debug_render.rs
@@ -1,6 +1,6 @@
use crate::harness::Harness;
+use crate::lines::DebugLines;
use bevy::prelude::*;
-use bevy_prototype_debug_lines::DebugLines;
use rapier::math::{Point, Real, DIM};
use rapier::pipeline::{
DebugRenderBackend, DebugRenderMode, DebugRenderObject, DebugRenderPipeline,
@@ -29,9 +29,9 @@ impl RapierDebugRenderPlugin {
impl Plugin for RapierDebugRenderPlugin {
fn build(&self, app: &mut App) {
- app.add_plugin(
- bevy_prototype_debug_lines::DebugLinesPlugin::with_depth_test(self.depth_test),
- )
+ app.add_plugin(crate::lines::DebugLinesPlugin::with_depth_test(
+ self.depth_test,
+ ))
.insert_resource(DebugRenderPipeline::new(
Default::default(),
!DebugRenderMode::RIGID_BODY_AXES,