diff --git a/src/geometry/collider.rs b/src/geometry/collider.rs index e182e981..da6dd904 100644 --- a/src/geometry/collider.rs +++ b/src/geometry/collider.rs @@ -493,7 +493,9 @@ impl Default for ContactForceEventThreshold { /// Component which will be filled (if present) with a list of entities with which the current /// entity is currently in contact. /// -/// This currently only updates when on an entity with a `Collider`. +/// This currently only updates when on an entity with a `Collider`, and if the +/// [`ActiveEvents::COLLISION_EVENTS`] is set on this entity or the entity it +/// collided with. #[derive(Component, Default, Reflect)] #[reflect(Component)] pub struct CollidingEntities(pub(crate) HashSet);