Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.30.0 (03 Oct. 2025)

- Update to parry 0.25 (which involves breaking changes in the `Voxels` API but improves its internal storage to support
large voxel maps).

## v0.29.0 (05 Sept. 2025)

This version contains a significant rework of the internal velocity constraints solver.
Expand Down
4 changes: 2 additions & 2 deletions crates/rapier2d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier2d-f64"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "2-dimensional physics engine in Rust."
documentation = "https://docs.rs/rapier2d"
Expand Down Expand Up @@ -69,7 +69,7 @@ vec_map = { version = "0.8", optional = true }
web-time = { version = "1.1", optional = true }
num-traits = "0.2"
nalgebra = "0.34"
parry2d-f64 = "0.24.0"
parry2d-f64 = "0.25.0"
simba = "0.9.1"
approx = "0.5"
rayon = { version = "1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rapier2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier2d"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "2-dimensional physics engine in Rust."
documentation = "https://docs.rs/rapier2d"
Expand Down Expand Up @@ -70,7 +70,7 @@ vec_map = { version = "0.8", optional = true }
web-time = { version = "1.1", optional = true }
num-traits = "0.2"
nalgebra = "0.34"
parry2d = "0.24.0"
parry2d = "0.25.0"
simba = "0.9.1"
approx = "0.5"
rayon = { version = "1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rapier3d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier3d-f64"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "3-dimensional physics engine in Rust."
documentation = "https://docs.rs/rapier3d"
Expand Down Expand Up @@ -72,7 +72,7 @@ vec_map = { version = "0.8", optional = true }
web-time = { version = "1.1", optional = true }
num-traits = "0.2"
nalgebra = "0.34"
parry3d-f64 = "0.24.0"
parry3d-f64 = "0.25.0"
simba = "0.9.1"
approx = "0.5"
rayon = { version = "1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rapier3d-meshloader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier3d-meshloader"
version = "0.10.0"
version = "0.11.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "STL file loader for the 3D rapier physics engine."
documentation = "https://docs.rs/rapier3d-meshloader"
Expand Down Expand Up @@ -29,4 +29,4 @@ thiserror = "2"
profiling = "1.0"
mesh-loader = "0.1.12"

rapier3d = { version = "0.29.0", path = "../rapier3d" }
rapier3d = { version = "0.30.0", path = "../rapier3d" }
6 changes: 3 additions & 3 deletions crates/rapier3d-urdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier3d-urdf"
version = "0.10.0"
version = "0.11.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "URDF file loader for the 3D rapier physics engine."
documentation = "https://docs.rs/rapier3d-urdf"
Expand Down Expand Up @@ -31,5 +31,5 @@ anyhow = "1"
bitflags = "2"
urdf-rs = "0.9"

rapier3d = { version = "0.29.0", path = "../rapier3d" }
rapier3d-meshloader = { version = "0.10.0", path = "../rapier3d-meshloader", default-features = false, optional = true }
rapier3d = { version = "0.30.0", path = "../rapier3d" }
rapier3d-meshloader = { version = "0.11.0", path = "../rapier3d-meshloader", default-features = false, optional = true }
4 changes: 2 additions & 2 deletions crates/rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier3d"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "3-dimensional physics engine in Rust."
documentation = "https://docs.rs/rapier3d"
Expand Down Expand Up @@ -74,7 +74,7 @@ vec_map = { version = "0.8", optional = true }
web-time = { version = "1.1", optional = true }
num-traits = "0.2"
nalgebra = "0.34"
parry3d = "0.24.0"
parry3d = "0.25.0"
simba = "0.9.1"
approx = "0.5"
rayon = { version = "1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/rapier_testbed2d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier_testbed2d-f64"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "Testbed for the Rapier 2-dimensional physics engine in Rust."
homepage = "http://rapier.rs"
Expand Down Expand Up @@ -98,5 +98,5 @@ bevy = { version = "0.15", default-features = false, features = [
[dependencies.rapier]
package = "rapier2d-f64"
path = "../rapier2d-f64"
version = "0.29.0"
version = "0.30.0"
features = ["serde-serialize", "debug-render", "profiler"]
4 changes: 2 additions & 2 deletions crates/rapier_testbed2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier_testbed2d"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "Testbed for the Rapier 2-dimensional physics engine in Rust."
homepage = "http://rapier.rs"
Expand Down Expand Up @@ -98,5 +98,5 @@ bevy = { version = "0.15", default-features = false, features = [
[dependencies.rapier]
package = "rapier2d"
path = "../rapier2d"
version = "0.29.0"
version = "0.30.0"
features = ["serde-serialize", "debug-render", "profiler"]
4 changes: 2 additions & 2 deletions crates/rapier_testbed3d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier_testbed3d-f64"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "Testbed for the Rapier 3-dimensional physics engine in Rust."
homepage = "http://rapier.rs"
Expand Down Expand Up @@ -99,5 +99,5 @@ bevy = { version = "0.15", default-features = false, features = [
[dependencies.rapier]
package = "rapier3d-f64"
path = "../rapier3d-f64"
version = "0.29.0"
version = "0.30.0"
features = ["serde-serialize", "debug-render", "profiler"]
4 changes: 2 additions & 2 deletions crates/rapier_testbed3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapier_testbed3d"
version = "0.29.0"
version = "0.30.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "Testbed for the Rapier 3-dimensional physics engine in Rust."
homepage = "http://rapier.rs"
Expand Down Expand Up @@ -97,5 +97,5 @@ bevy = { version = "0.15", default-features = false, features = [
[dependencies.rapier]
package = "rapier3d"
path = "../rapier3d"
version = "0.29.0"
version = "0.30.0"
features = ["serde-serialize", "debug-render", "profiler"]
2 changes: 1 addition & 1 deletion examples3d/voxels3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ pub fn init_world(testbed: &mut Testbed) {
let FeatureId::Face(id) = hit.feature else {
unreachable!()
};
let voxel_key = voxels.voxel_at_id(id);
let voxel_key = voxels.voxel_at_flat_id(id).unwrap();
let voxel_center = hit_collider.position() * voxels.voxel_center(voxel_key);
let voxel_size = voxels.voxel_size();
let hit_highlight = physics.colliders.get_mut(hit_highlight_handle).unwrap();
Expand Down
Loading