feat!: rename narrow-phase methods for more clarity.
Renames `contacts_with` to`contact_pairs_with`; and `intersections_with` to `intersection_pairs_with`.
This commit is contained in:
@@ -203,7 +203,7 @@ impl IslandManager {
|
||||
stack: &mut Vec<RigidBodyHandle>,
|
||||
) {
|
||||
for collider_handle in &rb_colliders.0 {
|
||||
for inter in narrow_phase.contacts_with(*collider_handle) {
|
||||
for inter in narrow_phase.contact_pairs_with(*collider_handle) {
|
||||
for manifold in &inter.manifolds {
|
||||
if !manifold.data.solver_contacts.is_empty() {
|
||||
let other = crate::utils::select_other(
|
||||
|
||||
Reference in New Issue
Block a user