Skip to content

Commit

Permalink
Merge branch 'master' into urdf-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Nov 15, 2024
2 parents 95957d0 + 513ab3d commit aa3ed33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- The region key has been replaced by an i64 in the f64 version of rapier, increasing the range before panics occur.
- Fix `BroadphaseMultiSap` not being able to serialize correctly with serde_json.
- Fix `KinematicCharacterController::move_shape` not respecting parameters `max_slope_climb_angle` and `min_slope_slide_angle`.
- Fix wasm32 default values for physics hooks filter to be consistent with native: `COMPUTE_IMPULSES`.

### Added

Expand Down
4 changes: 2 additions & 2 deletions src/pipeline/physics_hooks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ impl Default for ActiveHooks {
pub trait PhysicsHooks {
/// Applies the contact pair filter.
fn filter_contact_pair(&self, _context: &PairFilterContext) -> Option<SolverFlags> {
None
Some(SolverFlags::COMPUTE_IMPULSES)
}

/// Applies the intersection pair filter.
fn filter_intersection_pair(&self, _context: &PairFilterContext) -> bool {
false
true
}

/// Modifies the set of contacts seen by the constraints solver.
Expand Down

0 comments on commit aa3ed33

Please sign in to comment.