play
play copied to clipboard
module 'pymunk' has no attribute 'inf' if Stable=True
In new versions of pymunk, they removed '_pymunk.inf'. It can be fixed easily by replacing:
moment = _pymunk.inf
to
moment = float("inf")
In line 779