File tree Expand file tree Collapse file tree 5 files changed +27
-9
lines changed Expand file tree Collapse file tree 5 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 22Changelog
33=========
44
5- ..
6- Fix for 2 static bodies that are changed to dynamic and are attached to constraints
7- Updated the fork of Chipmunk2D used by Pymunk, fixing a number of issues, including maxForce on Spring constaints.
8- Added callback functions for DampedSpring and DampedRotarySpring to allow customized force/torque calculations.
5+ Pymunk 6.8.0 (2024-05-10)
6+ -------------------------
7+
8+ **Spring improvements **
9+
10+ This release makes the max force property on the two spring constraints work
11+ as expected (previosuly it did not have any effect). It is also possible to
12+ fully override the force/torque calculation of the springs with new callback.
13+ Appart from this a collection of fixes in the underlying Chipmunk2D library
14+ has been added. Finally its now possible to create static bodies with
15+ constraints between them, and then change the bodies to dynamic to "start"
16+ simulation of them.
17+
18+ Changes:
19+
20+ - Fix for 2 static bodies that are changed to dynamic and are attached to
21+ constraints
22+ - Updated the fork of Chipmunk2D used by Pymunk, fixing a number of issues,
23+ including maxForce on Spring constaints.
24+ - Added callback functions for DampedSpring and DampedRotarySpring to allow
25+ customized force/torque calculations.
26+
927
1028Pymunk 6.7.0 (2024-05-01)
1129-------------------------
Original file line number Diff line number Diff line change 55 given-names : " Victor"
66title : " Pymunk"
77abstract : " A easy-to-use pythonic rigid body 2d physics library"
8- version : 6.7 .0
9- date-released : 2024-05-01
8+ version : 6.8 .0
9+ date-released : 2024-05-10
1010url : " https://pymunk.org"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ the Pymunk webpage for some examples.
1818
19192007 - 2024, Victor Blomqvist - vb@viblo.se, MIT License
2020
21- This release is based on the latest Pymunk release (6.7 .0),
21+ This release is based on the latest Pymunk release (6.8 .0),
2222using Chipmunk2D 7 rev 7a29dcfa49931f26632f3019582f289ba811a2b9.
2323
2424
Original file line number Diff line number Diff line change 3232cp = _chipmunk_cffi .lib
3333ffi = _chipmunk_cffi .ffi
3434
35- version = "6.7 .0"
35+ version = "6.8 .0"
3636
3737chipmunk_version = "%s-%s" % (
3838 ffi .string (cp .cpVersionString ).decode ("utf-8" ),
Original file line number Diff line number Diff line change 2929 url = "http://www.pymunk.org" ,
3030 author = "Victor Blomqvist" ,
3131 author_email = "vb@viblo.se" ,
32- version = "6.7 .0" , # remember to change me for new versions!
32+ version = "6.8 .0" , # remember to change me for new versions!
3333 description = "Pymunk is a easy-to-use pythonic 2D physics library" ,
3434 long_description = long_description ,
3535 packages = packages ,
You can’t perform that action at this time.
0 commit comments