Skip to content

Commit 02ff409

Browse files
committed
n
1 parent ae414f3 commit 02ff409

File tree

1 file changed

+2
-2
lines changed
  • crates/bevy_debug_draw/src

1 file changed

+2
-2
lines changed

crates/bevy_debug_draw/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl Default for DebugDrawConfig {
9999
#[derive(Component)]
100100
struct DebugDrawMesh;
101101

102-
pub(crate) fn update(
102+
fn update(
103103
config: Res<DebugDrawConfig>,
104104
mut debug_draw: ResMut<DebugDraw>,
105105
mut meshes: ResMut<Assets<Mesh>>,
@@ -136,7 +136,7 @@ pub(crate) fn update(
136136
}
137137

138138
/// Move the [`DebugDrawMesh`] marker Component and the [`DebugDrawConfig`] Resource to the render context.
139-
pub(crate) fn extract(
139+
fn extract(
140140
mut commands: Commands,
141141
query: Extract<Query<Entity, With<DebugDrawMesh>>>,
142142
config: Extract<Res<DebugDrawConfig>>,

0 commit comments

Comments
 (0)