I want to catch when there is a large change in a Body’s velocity, basically to deal with “violent” collisions and the like. I tried to check to see if Math.abs(b.getVelocity().length()-b.getLastVelocity().length()) >= 100, (where b is a Body) but nothing happened. So, I printed out the changes every timestep, and even when I put gravity up to 50 and drop a Body from very high up, when it collides apparently the velocity difference is, at the most, 0.0072310437. I know that this is very, very, wrong. Not to mention the fact that while falling the Body still reported a velocity change of 0, even though it was being accelerated by gravity.
Any hints here? I also tried checking as collision happens, but that didn’t work because by the time the Arbiters were able to find a collision it appeared that the falling object had already had its opposite force applied and whatnot.