play icon indicating copy to clipboard operation
play copied to clipboard

module 'pymunk' has no attribute 'inf' if Stable=True

Open sangoodman1 opened this issue 4 years ago • 0 comments

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

sangoodman1 avatar Oct 24 '21 10:10 sangoodman1