See: The Pymunk Project The Chipmunk Project
1
vote
1answer
58 views
How do you use apply_impulse correctly?
I'm just starting out with the PyMunk physics library. I'm having trouble using apply_impulse(). I'm calling it like this:
player.body.apply_impulse(player.body, (10,10), (10,10) )
However, I'm ...
0
votes
1answer
345 views
Installing Pygame and Pymunk on Mac OS X 10.6
I have not been able to install Pymunk and Pygame for the same version of python. I have tried binaries, source installs, fink, and Macports, for system python, python 2.6, and python 2.7, with 32 and ...
0
votes
2answers
178 views
top down friction in pymunk
Been struggling with this for a couple of days, hard to find code examples on the net.
I'm making a topdown game and having trouble getting the player to move on key press. At the moment i'm using ...