Skip to content

Commit 6143e09

Browse files
chore(deps): Switch back to upstream Rapier (bug fix merged upstream) (#946)
Should switch off git revision once new rapier release is published.
1 parent ab139a9 commit 6143e09

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tracing = "0.1.37"
2424
puffin = { version = "0.17.0", features = ["web"] }
2525
puffin_egui = "0.23.0"
2626
petgraph = "0.6.4"
27-
rapier2d = { git = "https://github.com/MaxCWhitehead/rapier", branch = "fix-dynamic-change", features = ["debug-render", "enhanced-determinism"] }
27+
rapier2d = { git = "https://github.com/dimforge/rapier", rev= "e69e73e589cf4525c96ee7b919032c80ce205244", features = ["debug-render", "enhanced-determinism"] }
2828
indexmap = "2.0.0"
2929
serde = { version = "1.0.188", features = ["derive"] }
3030
shiftnanigans = "0.3.3"

src/core/physics/collisions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use crate::prelude::*;
2121
#[derive(HasSchema, Default)]
2222
pub struct RapierContext {
2323
pub collision_pipeline: rapier::CollisionPipeline,
24-
pub broad_phase: rapier::BroadPhase,
24+
pub broad_phase: rapier::DefaultBroadPhase,
2525
pub narrow_phase: rapier::NarrowPhase,
2626
pub query_pipeline: rapier::QueryPipeline,
2727
pub collider_set: rapier::ColliderSet,

0 commit comments

Comments
 (0)