We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae414f3 commit 02ff409Copy full SHA for 02ff409
crates/bevy_debug_draw/src/lib.rs
@@ -99,7 +99,7 @@ impl Default for DebugDrawConfig {
99
#[derive(Component)]
100
struct DebugDrawMesh;
101
102
-pub(crate) fn update(
+fn update(
103
config: Res<DebugDrawConfig>,
104
mut debug_draw: ResMut<DebugDraw>,
105
mut meshes: ResMut<Assets<Mesh>>,
@@ -136,7 +136,7 @@ pub(crate) fn update(
136
}
137
138
/// Move the [`DebugDrawMesh`] marker Component and the [`DebugDrawConfig`] Resource to the render context.
139
-pub(crate) fn extract(
+fn extract(
140
mut commands: Commands,
141
query: Extract<Query<Entity, With<DebugDrawMesh>>>,
142
config: Extract<Res<DebugDrawConfig>>,
0 commit comments