diff --git a/crates/bevy_gizmos/src/aabb.rs b/crates/bevy_gizmos/src/aabb.rs index 6496dc9125..b10b2bc946 100644 --- a/crates/bevy_gizmos/src/aabb.rs +++ b/crates/bevy_gizmos/src/aabb.rs @@ -64,7 +64,7 @@ pub struct AabbGizmoConfigGroup { /// Add this [`Component`] to an entity to draw its [`Aabb`] component. #[derive(Component, Reflect, Default, Debug)] -#[reflect(Component, Default)] +#[reflect(Component, Default, Debug)] pub struct ShowAabbGizmo { /// The color of the box. /// diff --git a/crates/bevy_gizmos/src/light.rs b/crates/bevy_gizmos/src/light.rs index 6155b9e6a0..3e193e578e 100644 --- a/crates/bevy_gizmos/src/light.rs +++ b/crates/bevy_gizmos/src/light.rs @@ -200,7 +200,7 @@ impl Default for LightGizmoConfigGroup { /// Add this [`Component`] to an entity to draw any of its lights components /// ([`PointLight`], [`SpotLight`] and [`DirectionalLight`]). #[derive(Component, Reflect, Default, Debug)] -#[reflect(Component, Default)] +#[reflect(Component, Default, Debug)] pub struct ShowLightGizmo { /// Default color strategy for this light gizmo. if [`None`], use the one provided by [`LightGizmoConfigGroup`]. ///