Version: 2017.3 (switch to 2017.4)
Computing a Normal/Perpendicular vector
Scripting Tools
Other Versions

The Amount of One Vector’s Magnitude that Lies in Another Vector’s Direction

A car’s speedometer typically works by measuring the rotational speed of the wheels. The car may not be moving directly forward (it may be skidding sideways, for example) in which case part of the motion will not be in the direction the speedometer can measure. The magnitude of an object’s rigidbody.velocity vector will give the speed in its direction of overall motion but to isolate the speed in the forward direction, you should use the dot product:-

 var fwdSpeed = Vector3.Dot(rigidbody.velocity, transform.forward);

Naturally, the direction can be anything you like but the direction vector must always be normalized for this calculation. Not only is the result more correct than the magnitude of the velocity, it also avoids the slow square root operation involved in finding the magnitude.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答