diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-10-27 16:48:05 +0100 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-10-27 16:49:24 +0100 |
| commit | 3bfa4079999f6c886e692de256abf51e4506a2b1 (patch) | |
| tree | 23d0120978ba7e7c5f1003b87919526536793bd7 /src/geometry/user_callbacks.rs | |
| parent | 24bd97636e890195c8a72f8e265809bbae44ab13 (diff) | |
| download | rapier-3bfa4079999f6c886e692de256abf51e4506a2b1.tar.gz rapier-3bfa4079999f6c886e692de256abf51e4506a2b1.tar.bz2 rapier-3bfa4079999f6c886e692de256abf51e4506a2b1.zip | |
ContactPairFilter: don't overwrite the effect of the solver groups.
This is more consistent with the fact that the effect of collision groups is not overwritten either.
Diffstat (limited to 'src/geometry/user_callbacks.rs')
| -rw-r--r-- | src/geometry/user_callbacks.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/geometry/user_callbacks.rs b/src/geometry/user_callbacks.rs index 9b36695..ae0119f 100644 --- a/src/geometry/user_callbacks.rs +++ b/src/geometry/user_callbacks.rs @@ -4,13 +4,13 @@ use crate::geometry::{Collider, SolverFlags}; /// Context given to custom collision filters to filter-out collisions. pub struct PairFilterContext<'a> { /// The first collider involved in the potential collision. - pub collider1: &'a Collider, - /// The first collider involved in the potential collision. - pub collider2: &'a Collider, - /// The first collider involved in the potential collision. pub rigid_body1: &'a RigidBody, /// The first collider involved in the potential collision. pub rigid_body2: &'a RigidBody, + /// The first collider involved in the potential collision. + pub collider1: &'a Collider, + /// The first collider involved in the potential collision. + pub collider2: &'a Collider, } /// User-defined filter for potential contact pairs detected by the broad-phase. @@ -24,9 +24,6 @@ pub trait ContactPairFilter: Send + Sync { /// Note that using a contact pair filter will replace the default contact filtering /// which consists of preventing contact computation between two non-dynamic bodies. /// - /// Note that using a contact pair filter will replace the default determination - /// of solver flags, based on the colliders solver groups. - /// /// This filtering method is called after taking into account the colliders collision groups. /// /// If this returns `None`, then the narrow-phase will ignore this contact pair and |
