Files
engine/docs/en/core/time.md
2024-08-05 17:03:33 +08:00

2.1 KiB

order, title, type, label
order title type label
9 Time Core Core

Time contains information related to engine time:

Properties

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