unity limit rigidbody velocity code example
Example 1: unityy limit rigidbody velocity
if(rigidbody.velocity.sqrMagnitude > maxVelocity)
{
//smoothness of the slowdown is controlled by the 0.99f,
//0.5f is less smooth, 0.9999f is more smooth
rigidbody.velocity *= 0.99f;
}
Example 2: unity how to set rigidbody velocity
Vector3 velocity = new Vector3(10f/*x*/, 10f/*y*/, 10f/*z*/);
GetComponent<Rigidbody>().velocity = velocity;