aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2021-06-08 18:03:33 +0200
committerSébastien Crozet <sebastien@crozet.re>2021-06-08 18:23:40 +0200
commitbccb7d4c669fb3bafa94d90486fa4d9b78f88cf8 (patch)
tree2d5615ee56a80f9413776af7e0c31abe04b62afb /src/pipeline
parent57ed0430d107aaa9bf43b8c7fc5270008462893d (diff)
downloadrapier-bccb7d4c669fb3bafa94d90486fa4d9b78f88cf8.tar.gz
rapier-bccb7d4c669fb3bafa94d90486fa4d9b78f88cf8.tar.bz2
rapier-bccb7d4c669fb3bafa94d90486fa4d9b78f88cf8.zip
Track the rigid-body graph IDs inside of the JointSet instead of RigidBodyIds
Diffstat (limited to 'src/pipeline')
-rw-r--r--src/pipeline/physics_pipeline.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs
index a83240e..80d75eb 100644
--- a/src/pipeline/physics_pipeline.rs
+++ b/src/pipeline/physics_pipeline.rs
@@ -235,7 +235,7 @@ impl PhysicsPipeline {
bodies,
colliders,
narrow_phase,
- joints.joint_graph(),
+ joints,
integration_parameters.min_island_size,
);
self.counters.stages.island_construction_time.pause();