aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pipeline/collision_pipeline.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeline/collision_pipeline.rs b/src/pipeline/collision_pipeline.rs
index b086fbe..796cc84 100644
--- a/src/pipeline/collision_pipeline.rs
+++ b/src/pipeline/collision_pipeline.rs
@@ -210,7 +210,7 @@ mod tests {
let mut hit = false;
- for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
+ for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}
@@ -262,7 +262,7 @@ mod tests {
let mut hit = false;
- for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
+ for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}