Is it possible to simulate football free kick? (bend like Beckham). I was able to make straight kicks, no problem by using rigidbody.velocity and rigidbody.addForce.
if(!target.rigidbody)
target.AddComponent ("Rigidbody");
target.rigidbody.velocity.y = kick_velocity;
target.rigidbody.AddForce (forward * kick_force);
Thanks