Release v0.3.2
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
## v0.3.2
|
||||||
|
- Add linear and angular damping. The damping factor can be set with `RigidBodyBuilder::linear_damping` and
|
||||||
|
`RigidBodyBuilder::angular_damping`.
|
||||||
|
- Implement `Clone` for almost everything that can be worth cloning.
|
||||||
|
- Allow setting the initial mass and mass properties of a rigid-bodies using `RigidBodyBuilder::mass` and
|
||||||
|
`RigidBodyBuilder::mass_properties`.
|
||||||
|
- The restitution coefficient of colliders is now taken into account by the physics solver.
|
||||||
|
|
||||||
## v0.3.1
|
## v0.3.1
|
||||||
- Fix non-determinism problem when using triangle-meshes, cone, cylinders, or capsules.
|
- Fix non-determinism problem when using triangle-meshes, cone, cylinders, or capsules.
|
||||||
- Add `JointSet::remove(...)` to remove a joint from the `JointSet`.
|
- Add `JointSet::remove(...)` to remove a joint from the `JointSet`.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rapier2d"
|
name = "rapier2d"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
||||||
description = "2-dimensional physics engine in Rust."
|
description = "2-dimensional physics engine in Rust."
|
||||||
documentation = "http://docs.rs/rapier2d"
|
documentation = "http://docs.rs/rapier2d"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rapier3d"
|
name = "rapier3d"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
||||||
description = "3-dimensional physics engine in Rust."
|
description = "3-dimensional physics engine in Rust."
|
||||||
documentation = "http://docs.rs/rapier3d"
|
documentation = "http://docs.rs/rapier3d"
|
||||||
|
|||||||
Reference in New Issue
Block a user