How does SpriteKit's physics engine (Box2d) move bodies and apply gravity to them? is it just the standard:
velocity = velocity + gravity
position = position + velocity * deltaTime
or is there a more complex equation.
I ask this because I am trying to calculate the trajectory of the body and plot it.