Skip to content

Commit 77cbe49

Browse files
committed
Release 0.4
1 parent 860c989 commit 77cbe49

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Below are some of the current features of Bevy XPBD.
5555
- `f32`/`f64` precision (`f32` by default)
5656

5757
You can find a more complete list along with documentation in the
58-
[Table of contents](https://docs.rs/bevy_xpbd_3d/0.3.0/bevy_xpbd_3d/#table-of-contents)
58+
[Table of contents](https://docs.rs/bevy_xpbd_3d/latest/bevy_xpbd_3d/#table-of-contents)
5959
on docs.rs.
6060

6161
## Documentation
@@ -70,11 +70,11 @@ First, add `bevy_xpbd_2d` or `bevy_xpbd_3d` to your dependencies in `Cargo.toml`
7070
```toml
7171
# For 2D applications:
7272
[dependencies]
73-
bevy_xpbd_2d = "0.3"
73+
bevy_xpbd_2d = "0.4"
7474

7575
# For 3D applications:
7676
[dependencies]
77-
bevy_xpbd_3d = "0.3"
77+
bevy_xpbd_3d = "0.4"
7878

7979
# If you want to use the most up-to-date version, you can follow the main branch:
8080
[dependencies]
@@ -126,7 +126,7 @@ fn setup(
126126
// Light
127127
commands.spawn(PointLightBundle {
128128
point_light: PointLight {
129-
intensity: 1500.0,
129+
intensity: 2_000_000.0,
130130
shadows_enabled: true,
131131
..default()
132132
},
@@ -155,25 +155,27 @@ By default the examples use `f32`. To run the `f64` versions, you need to disabl
155155
and precision:
156156

157157
```shell
158-
cargo run --example cubes --no-default-features --features "3d f64"
158+
# Manually specify dimension and precision. `parry-f64` enables collision detection using Parry.
159+
cargo run --example cubes --no-default-features --features "3d f64 parry-f64"
159160
```
160161

161162
## Supported Bevy versions
162163

163164
| Bevy | Bevy XPBD |
164165
| ---- | --------- |
166+
| 0.13 | 0.4 |
165167
| 0.12 | 0.3 |
166168
| 0.11 | 0.2 |
167169
| 0.10 | 0.1 |
168170

169171
## Future features
170172

171-
- Joint motors
172-
- Articulations, aka. multibody joints
173173
- Continuous collision detection (CCD)
174174
- Per-entity collision hooks or callbacks
175175
- Flags for what types of collisions are active, like collisions against specific rigid body types, sensors or parents
176176
- Performance optimization (better broad phase, parallel solver...)
177+
- Joint motors
178+
- Articulations, aka. multibody joints
177179
- Proper cross-platform determinism
178180
- Soft bodies (cloth and deformable solids)
179181
- Maybe fluid simulation

crates/bevy_xpbd_2d/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_xpbd_2d"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["Joona Aalto <[email protected]>"]

crates/bevy_xpbd_3d/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_xpbd_3d"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["Joona Aalto <[email protected]>"]

src/lib.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
//! ```toml
2424
//! # For 2D applications:
2525
//! [dependencies]
26-
//! bevy_xpbd_2d = "0.3"
26+
//! bevy_xpbd_2d = "0.4"
2727
//!
2828
//! # For 3D applications:
2929
//! [dependencies]
30-
//! bevy_xpbd_3d = "0.3"
30+
//! bevy_xpbd_3d = "0.4"
3131
//!
3232
//! # If you want to use the most up-to-date version, you can follow the main branch:
3333
//! [dependencies]
@@ -39,8 +39,9 @@
3939
//!
4040
//! ```toml
4141
//! [dependencies]
42-
//! # Add 3D Bevy XPBD with double-precision floating point numbers
43-
//! bevy_xpbd_3d = { version = "0.3", default-features = false, features = ["3d", "f64"] }
42+
//! # Add 3D Bevy XPBD with double-precision floating point numbers.
43+
//! # `parry-f64` enables collision detection using Parry.
44+
//! bevy_xpbd_3d = { version = "0.4", default-features = false, features = ["3d", "f64", "parry-f64"] }
4445
//! ```
4546
//!
4647
//! ### Feature flags

0 commit comments

Comments
 (0)