aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNash <me@aunyks.com>2022-06-30 10:23:53 -0400
committerNash <me@aunyks.com>2022-06-30 10:23:53 -0400
commit1f7cf1ac716a6a1dcc2b4e502f8aeda72b82d9a8 (patch)
tree20caa6f765d5f03ce95025a84034faaddef1be08
parent77a4bbf14dc0265e284045ba829c322ea2699067 (diff)
downloadrapier-1f7cf1ac716a6a1dcc2b4e502f8aeda72b82d9a8.tar.gz
rapier-1f7cf1ac716a6a1dcc2b4e502f8aeda72b82d9a8.tar.bz2
rapier-1f7cf1ac716a6a1dcc2b4e502f8aeda72b82d9a8.zip
Update ActiveEvents rustdocs to remove EventHandler::handle_intersection_event()
-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;
}
}