I have this missile (special effect), arc-projected to a point on the air. I'll just combine the target location z with the target height. I used this parabola function:
function Parabola takes real h, real d, real x returns real
return (4.00 * h / d) * (d - x) * (x / d)
// 'h' is the...