From e46a34cd5700f5af19ae881d8688411e77e70113 Mon Sep 17 00:00:00 2001 From: Jondolf Date: Fri, 14 Jul 2023 22:36:19 +0300 Subject: [PATCH] Publish 0.2.0 --- README.md | 9 +++++---- crates/bevy_xpbd_2d/Cargo.toml | 2 +- crates/bevy_xpbd_3d/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a9d8ba9c..43cd9d0d 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,11 @@ First, add `bevy_xpbd_2d` or `bevy_xpbd_3d` to your dependencies in `Cargo.toml` ```toml # For 2D applications: [dependencies] -bevy_xpbd_2d = "0.1" +bevy_xpbd_2d = "0.2" # For 3D applications: [dependencies] -bevy_xpbd_3d = "0.1" +bevy_xpbd_3d = "0.2" # If you want to use the most up-to-date version, you can follow the main branch: [dependencies] @@ -148,7 +148,7 @@ cargo run --example cubes --no-default-features --features "3d f64" | Bevy | Bevy XPBD | | ---- | --------- | -| 0.11 | main | +| 0.11 | 0.2 | | 0.10 | 0.1 | ## Future features @@ -156,8 +156,9 @@ cargo run --example cubes --no-default-features --features "3d f64" - On-demand simulation stepping - Joint motors - Articulations, aka. multibody joints -- Continuous collision detection +- Continuous collision detection (CCD) - Multiple colliders per body and colliders as children +- Collision filters, i.e. excluding certain entities or rigid body types - Debug render colliders, joints and ray casts - Performance optimization (better broad phase, parallel solver...) - Proper cross-platform determinism diff --git a/crates/bevy_xpbd_2d/Cargo.toml b/crates/bevy_xpbd_2d/Cargo.toml index 555cba48..0876cb13 100644 --- a/crates/bevy_xpbd_2d/Cargo.toml +++ b/crates/bevy_xpbd_2d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_xpbd_2d" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ "Joona Aalto " ] diff --git a/crates/bevy_xpbd_3d/Cargo.toml b/crates/bevy_xpbd_3d/Cargo.toml index a574f80e..c18192ed 100644 --- a/crates/bevy_xpbd_3d/Cargo.toml +++ b/crates/bevy_xpbd_3d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_xpbd_3d" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ "Joona Aalto " ]