aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics/rigid_body_set.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-11-20 17:39:28 +0100
committerGitHub <noreply@github.com>2020-11-20 17:39:28 +0100
commit3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0 (patch)
treed2236a6adfd10a8478f63628c766200b93a97a2a /src/dynamics/rigid_body_set.rs
parent1b0f39073fa5f87ec275fff0125649de123e6fa9 (diff)
parent11e4ccbe930b96a4c04208accd24a4519b783c8c (diff)
downloadrapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.tar.gz
rapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.tar.bz2
rapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.zip
Merge pull request #64 from dimforge/explicit_wake_up
Add more explicit parameters to wake-up a rigid-body
Diffstat (limited to 'src/dynamics/rigid_body_set.rs')
-rw-r--r--src/dynamics/rigid_body_set.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynamics/rigid_body_set.rs b/src/dynamics/rigid_body_set.rs
index b857173..ec4d388 100644
--- a/src/dynamics/rigid_body_set.rs
+++ b/src/dynamics/rigid_body_set.rs
@@ -207,7 +207,7 @@ impl RigidBodySet {
* Remove colliders attached to this rigid-body.
*/
for collider in &rb.colliders {
- colliders.remove(*collider, self);
+ colliders.remove(*collider, self, false);
}
/*