diag tickTime: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ") |
Lou Montana (talk | contribs) |
||
Line 29: | Line 29: | ||
[[diag_log]] [[format]] ["%1",_stop - _start];</code> | [[diag_log]] [[format]] ["%1",_stop - _start];</code> | ||
|seealso= [[diag_fps]] | |seealso= [[diag_fps]] [[diag_fpsMin]], [[diag_frameNo]], [[diag_log]], [[diag_deltaTime]], [[time]], [[systemTime]], [[systemTimeUTC]] | ||
}} | }} | ||
Revision as of 14:57, 20 January 2022
Description
- Description:
- Real time in seconds spent from the start of the game. On Windows the command uses timeGetTime.
- Groups:
- DiagnosticTime
Syntax
- Syntax:
- diag_tickTime
- Return Value:
- Number - Time in seconds from game start
Examples
- Example 1:
// Measure execution time of a script _start = diag_tickTime; // code _stop = diag_tickTime; diag_log format ["%1",_stop - _start];
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on 25 Jan, 2014
- Killzone_Kid
- This command will return time since last client restart as float. However because of Number format used in Arma, the more time has past since restart the less precise the returned value will be.