Escala a la que pasa el tiempo. Se puede usar para efectos de cámara lenta.
When timeScale
is 1.0 the time is passing as fast as realtime.
When timeScale
is 0.5 the time is passing 2x slower than realtime.
When timeScale
is set to zero the game is basically paused if all your functions are
frame rate independent.
Excepto para realtimeSinceStartup, timeScale
afecta a todas las variables de tiempo y tiempo delta de la clase Time.
Si usted minimiza timeScale
se recomienda también minimizar Time.fixedDeltaTime por la misma cantidad.
Las funciones FixedUpdate no se llamarán cuando timeScale
esté establecido a cero.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Update() { if (Input.GetButtonDown("Fire1")) { if (Time.timeScale == 1.0F) Time.timeScale = 0.7F; else Time.timeScale = 1.0F; Time.fixedDeltaTime = 0.02F * Time.timeScale; } } }