Play Time: Difference between revisions
Jump to navigation
Jump to search
NerdOfEpic (talk | contribs) |
NerdOfEpic (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
Timers in the game are tracked to ridiculous levels of accuracy. When the game is over, how long it took you is shown on the summary screen | Timers in the game are tracked to ridiculous levels of accuracy. When the game is over, how long it took you is shown on the summary screen. | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 21: | Line 21: | ||
* SS is seconds | * SS is seconds | ||
* mmm is milliseconds | * mmm is milliseconds | ||
This information is part of the [[Verify Code]]. | |||
Revision as of 20:58, 16 June 2026
Timers in the game are tracked to ridiculous levels of accuracy. When the game is over, how long it took you is shown on the summary screen.
| Type | Resolution | Max Duration | Description |
|---|---|---|---|
| Under the Hood | 0.0000001 second | ~29,227 years | Times are tracked to very high resolution, even if not shown to the user this way. |
| Verify Code | 0.001 second | ~298 hours | Timer resolution is reduced for storage in the verify code. |
Display
Regardless of where the timing information came from, they are never shown with finer resolution than milliseconds. If a playthrough of the game takes over the max duration that can be represented in a verify code, the summary will simply show the time as dashes to indicate the game was completed in a time that was too long to track. The summary page will still show the full duration in hours up to the maximum in-game duration.
Timings are shown as:
HH:MM:SS.mmm
Where:
- HH is hours
- MM is minutes
- SS is seconds
- mmm is milliseconds
This information is part of the Verify Code.