Time.maximumDeltaTime

Cambiar al Manual
public static float maximumDeltaTime ;

Descripción

The maximum time a frame can take. Physics and other fixed frame rate updates (like MonoBehaviour's FixedUpdate) will be performed only for this duration of time per frame.

Utilice esta función para evitar que se produzcan picos de frame rate bajos debido a la combinación del Garbage Collector (recolector de basuras) y de física costosa u otras actualizaciones de velocidad de frames fijos.

If frame will take longer than specified value, then less physics and other fixed frame rate updates will be performed. That will temporarily slow down the gameplay, but will allow frame rate to catchup avoiding nasty stuttering.

Es aconsejable mantener el tiempo máximo para el frame entre 1/10 y 1/3 de segundo.