aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2021-02-23 16:02:19 +0100
committerCrozet Sébastien <developer@crozet.re>2021-02-23 16:02:19 +0100
commit0f0f2c344fd78c3d1ca9ec07d3523c5d0ea10c82 (patch)
tree39c9ece3366ee3b7f82342c60e53521c291c7206 /src/pipeline
parentbabcab0bed23fadd23181ccc58aae34fb80d01d8 (diff)
downloadrapier-0f0f2c344fd78c3d1ca9ec07d3523c5d0ea10c82.tar.gz
rapier-0f0f2c344fd78c3d1ca9ec07d3523c5d0ea10c82.tar.bz2
rapier-0f0f2c344fd78c3d1ca9ec07d3523c5d0ea10c82.zip
Rename modify_contacts -> modify_solver_contacts.
Diffstat (limited to 'src/pipeline')
-rw-r--r--src/pipeline/physics_hooks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/physics_hooks.rs b/src/pipeline/physics_hooks.rs
index d7b7b7e..11ca485 100644
--- a/src/pipeline/physics_hooks.rs
+++ b/src/pipeline/physics_hooks.rs
@@ -179,7 +179,7 @@ pub trait PhysicsHooks: Send + Sync {
/// contains the `PhysicsHooksFlags::MODIFY_SOLVER_CONTACTS` flags.
///
/// By default, the content of `solver_contacts` is computed from `manifold.points`.
- /// This method will be called on each contact manifold which have the flag `SolverFlags::MODIFY_CONTACTS` set.
+ /// This method will be called on each contact manifold which have the flag `SolverFlags::modify_solver_contacts` set.
/// This method can be used to modify the set of solver contacts seen by the constraints solver: contacts
/// can be removed and modified.
///