Monday, June 23, 2014

How to calculate jumping height

Assume that jumping mechanic is using Cartesian Projection on y-position

jump_init is the start jump speed
gravity_pull is the constant gravity pull (weight is ignored)

Assume that x is jump_init and y is gravity_pull

maximum jumping height = x * (x/y + 1) / 2

No comments:

Post a Comment