Time contains information related to engine time:
| Name | Description |
|---|---|
| timeScale | Time scaling |
| maximumDeltaTime | Maximum interval, in case of low frame rate or stuttering |
| frameCount | The cumulative number of frames since the engine started |
| deltaTime | The incremental time from the previous frame to the current frame, in seconds, not exceeding maximumDeltaTime * timeScale |
| actualDeltaTime | The actual incremental time from the previous frame to the current frame, in seconds, ignoring the effects of timeScale and maximumDeltaTime |
| elapsedTime | The cumulative elapsed time since the engine started, in seconds |
| actualElapsedTime | The cumulative elapsed time since the engine started, in seconds |