@@ -55,7 +55,7 @@ Below are some of the current features of Bevy XPBD.
55
55
- ` f32 ` /` f64 ` precision (` f32 ` by default)
56
56
57
57
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 )
59
59
on docs.rs.
60
60
61
61
## Documentation
@@ -70,11 +70,11 @@ First, add `bevy_xpbd_2d` or `bevy_xpbd_3d` to your dependencies in `Cargo.toml`
70
70
``` toml
71
71
# For 2D applications:
72
72
[dependencies ]
73
- bevy_xpbd_2d = " 0.3 "
73
+ bevy_xpbd_2d = " 0.4 "
74
74
75
75
# For 3D applications:
76
76
[dependencies ]
77
- bevy_xpbd_3d = " 0.3 "
77
+ bevy_xpbd_3d = " 0.4 "
78
78
79
79
# If you want to use the most up-to-date version, you can follow the main branch:
80
80
[dependencies ]
@@ -126,7 +126,7 @@ fn setup(
126
126
// Light
127
127
commands . spawn (PointLightBundle {
128
128
point_light : PointLight {
129
- intensity : 1500 .0 ,
129
+ intensity : 2_000_000 .0 ,
130
130
shadows_enabled : true ,
131
131
.. default ()
132
132
},
@@ -155,25 +155,27 @@ By default the examples use `f32`. To run the `f64` versions, you need to disabl
155
155
and precision:
156
156
157
157
``` 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"
159
160
```
160
161
161
162
## Supported Bevy versions
162
163
163
164
| Bevy | Bevy XPBD |
164
165
| ---- | --------- |
166
+ | 0.13 | 0.4 |
165
167
| 0.12 | 0.3 |
166
168
| 0.11 | 0.2 |
167
169
| 0.10 | 0.1 |
168
170
169
171
## Future features
170
172
171
- - Joint motors
172
- - Articulations, aka. multibody joints
173
173
- Continuous collision detection (CCD)
174
174
- Per-entity collision hooks or callbacks
175
175
- Flags for what types of collisions are active, like collisions against specific rigid body types, sensors or parents
176
176
- Performance optimization (better broad phase, parallel solver...)
177
+ - Joint motors
178
+ - Articulations, aka. multibody joints
177
179
- Proper cross-platform determinism
178
180
- Soft bodies (cloth and deformable solids)
179
181
- Maybe fluid simulation
0 commit comments