Interpolation allows you to smooth out the effect of running physics at a fixed frame rate.
// Make the rigidbody interpolate the graphics rigidbody.interpolation = RigidbodyInterpolation.Interpolate;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { rigidbody.interpolation = RigidbodyInterpolation.Interpolate; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: rigidbody.interpolation = RigidbodyInterpolation.Interpolate