mirror of
https://github.com/galacean/engine.git
synced 2026-07-03 23:34:42 +08:00
2.1 KiB
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 |