diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-01-08 21:09:11 +0100 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-01-08 21:09:11 +0100 |
| commit | 87ec0ced4031633e9084ee2f60d47c4cd57f7f7b (patch) | |
| tree | 50a37237833b6fa9bcfec2c1b34f28f92fcce96a /src/pipeline | |
| parent | 9726738cd2558bc23ff48b1d5835eff8b0e59c83 (diff) | |
| download | rapier-87ec0ced4031633e9084ee2f60d47c4cd57f7f7b.tar.gz rapier-87ec0ced4031633e9084ee2f60d47c4cd57f7f7b.tar.bz2 rapier-87ec0ced4031633e9084ee2f60d47c4cd57f7f7b.zip | |
Address issues with the genral-case for multibody joints
Diffstat (limited to 'src/pipeline')
| -rw-r--r-- | src/pipeline/physics_pipeline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs index a289a09..125b144 100644 --- a/src/pipeline/physics_pipeline.rs +++ b/src/pipeline/physics_pipeline.rs @@ -542,7 +542,7 @@ impl PhysicsPipeline { multibody.1.update_root_type(bodies); // FIXME: what should we do here? We should not // rely on the next state here. - multibody.1.forward_kinematics_next(bodies, true); + multibody.1.forward_kinematics(bodies, true); } self.detect_collisions( |
