Hello, i want to throw a ball, but before i want to see the path
i use simple physics math like : sy(t) = vy * t + g * t * t ;
sx = vx * t;
then i use rigidbody.velocity = tranform.forward * velocity;
in the calculation i use the same velocity of corse.(the same vector3)
g is 9.81 of corse
my parabola looks pretty fine but doesnt match the path the ball goes in game.
Is there anything i should know about physics and units? (I am little noob…)
any ideas?