dimforge / rapier

2D and 3D physics engines focused on performance.
https://rapier.rs
Apache License 2.0
3.97k stars 248 forks source link

Fix enabling disabled collider #538

Closed rafalh closed 11 months ago

rafalh commented 11 months ago

If collider was enabled and no other attributes were changed its collisions were not detected. This was caused by needs_broad_phase_update function not handling the case of changed enabled status. Fixes dimforge/bevy_rapier#435

sebcrozet commented 11 months ago

Thanks!