aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pipeline/event_handler.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeline/event_handler.rs b/src/pipeline/event_handler.rs
index f6c33ec..24b415c 100644
--- a/src/pipeline/event_handler.rs
+++ b/src/pipeline/event_handler.rs
@@ -6,8 +6,8 @@ bitflags::bitflags! {
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
/// Flags affecting the events generated for this collider.
pub struct ActiveEvents: u32 {
- /// If set, Rapier will call `EventHandler::handle_intersection_event` and
- /// `EventHandler::handle_contact_event` whenever relevant for this collider.
+ /// If set, Rapier will call `EventHandler::handle_contact_event`
+ /// whenever relevant for this collider.
const COLLISION_EVENTS = 0b0001;
}
}