This is a way to delta-time frame-by-frame calculation of gravity. I derived this late last night, so if you notice any problems, please tell me. here are the equations: position += (velocity * frameTime) + acceleration * (frameTime * (frameTime - 1)) / 2 velocity += acceleration * frameTime