We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf498f3 commit 071bfa7Copy full SHA for 071bfa7
src/collision/narrow_phase/mod.rs
@@ -441,6 +441,9 @@ fn remove_collider(
441
if let Ok(mut colliding_entities) = colliding_entities_query.get_mut(other_entity) {
442
colliding_entities.remove(&entity);
443
}
444
+ if let Ok(mut colliding_entities) = colliding_entities_query.get_mut(entity) {
445
+ colliding_entities.remove(&other_entity);
446
+ }
447
448
let has_island = contact_edge.island.is_some();
449
0 commit comments