aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-11-19 18:27:49 +0100
committerCrozet Sébastien <developer@crozet.re>2020-11-19 18:28:16 +0100
commit11e4ccbe930b96a4c04208accd24a4519b783c8c (patch)
treed2236a6adfd10a8478f63628c766200b93a97a2a
parent5ce36065829cdc23334bbb6ca6c0d83f7de1ece8 (diff)
downloadrapier-11e4ccbe930b96a4c04208accd24a4519b783c8c.tar.gz
rapier-11e4ccbe930b96a4c04208accd24a4519b783c8c.tar.bz2
rapier-11e4ccbe930b96a4c04208accd24a4519b783c8c.zip
Update CHANGELOG.
-rw-r--r--CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 4d3e5b6..8e61922 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+## v0.4.0 - WIP
+- The rigid-body `linvel`, `angvel`, and `position` fields are no longer public. Access using
+ their corresponding getters/setters. For example: `rb.linvel()`, `rb.set_linvel(vel, true)`.
+- Add `RigidBodyBuilder::sleeping(true)` to allow the creation of a rigid-body that is asleep
+ at initialization-time.
+
## v0.3.2
- Add linear and angular damping. The damping factor can be set with `RigidBodyBuilder::linear_damping` and
`RigidBodyBuilder::angular_damping`.