Skip to content

Commit

Permalink
Update Rapier to 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Demindiro committed Jul 19, 2021
1 parent ef84c65 commit d60f87f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
name = "godot_rapier3d"

[dependencies]
rapier3d = { git = "https://github.com/Demindiro/rapier", branch = "godot-0.9", version = "*", features = ["simd-nightly"] }
rapier3d = { git = "https://github.com/Demindiro/rapier", branch = "godot-0.10", version = "*", features = ["simd-nightly"] }
gdnative = "*"
lazy_static = "*"
wchar = "*"
Expand Down
2 changes: 1 addition & 1 deletion rapier3d/src/space.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ impl Space {
body_a: RigidBodyHandle,
body_b: RigidBodyHandle,
) -> JointHandle {
self.joints.insert(&mut self.bodies, body_a, body_b, joint)
self.joints.insert(body_a, body_b, joint)
}

/// Removes the joint with the given handle. Returns the joint if it existed
Expand Down

0 comments on commit d60f87f

Please sign in to comment.