Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseThe scale at which the time is passing. This can be used for slow motion effects.
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.
Except for realtimeSinceStartup, timeScale
affects all the time and delta time measuring variables of the Time class.
If you lower timeScale
it is recommended to also lower Time.fixedDeltaTime by the same amount.
FixedUpdate functions will not be called when timeScale
is set to zero.
using UnityEngine;
public class Example : MonoBehaviour { // Toggles the time scale between 1 and 0.7 // whenever the user hits the Fire1 button.
void Update() { if (Input.GetButtonDown("Fire1")) { if (Time.timeScale == 1.0f) Time.timeScale = 0.7f; else Time.timeScale = 1.0f; // Adjust fixed delta time according to timescale // The fixed delta time will now be 0.02 frames per real-time second Time.fixedDeltaTime = 0.02f * Time.timeScale; } } }