diff --git a/crates/bevy_math/src/ray.rs b/crates/bevy_math/src/ray.rs index 6f9a30f703..3f6a64c759 100644 --- a/crates/bevy_math/src/ray.rs +++ b/crates/bevy_math/src/ray.rs @@ -68,8 +68,11 @@ impl Ray2d { reflect(Deserialize, Serialize) )] pub enum PlaneIntersectionMode { + /// Intersects only the front face of the plane. FrontFaceOnly, + /// Intersects only the back face of the plane. BackFaceOnly, + /// Intersects both faces of the plane. Both, }