diag tickTime: Difference between revisions
Jump to navigation
Jump to search
m (template:command argument fix) |
Killzone Kid (talk | contribs) (see also) |
||
Line 29: | Line 29: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[diag_fps]], [[diag_fpsMin]], [[diag_frameNo]], [[diag_log]] |SEEALSO= | | [[diag_fps]], [[diag_fpsMin]], [[diag_frameNo]], [[diag_log]], [[diag_deltaTime]], [[time]] |SEEALSO= | ||
| |MPBEHAVIOUR= | | |MPBEHAVIOUR= |
Revision as of 19:51, 11 July 2019
Description
- Description:
- Real time spent from the start of the game. Expressed in fractions of second. Resolution of 1 tick is 1 ms.
- Groups:
- Uncategorised
Syntax
- Syntax:
- diag_tickTime
- Return Value:
- Number
Examples
- Example 1:
_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
Notes
- Posted on 8 Sept, 2010
- Crowe
- In Arma 2 Operation Arrowhead 1.54.0.72888 this returns the time in seconds since the game was started.
- 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.