I have a rigidBody with gravity checked.Naturaly without any force,it should fall to the ground.and when you add a force equal to gravity in magnitude but in a negative direction,it should not move any more,(at least it should NOT have acceleration).
but surprisingly it does!
can some body help me out? tnx in advance
void Update ()
{
Vector3 t = Physics.gravity * rigidbody.mass;
rigidbody.AddForce (-t);
}