Difference between revisions of "GetCurrentGameTime - Utility"
Jump to navigation
Jump to search
Tag: Reverted |
RobinHood70 (talk | contribs) (This is already clear by virtue of it being a float (see Syntax section)) Tag: Undo |
||
(2 intermediate revisions by one other user not shown) | |||
Line 15: | Line 15: | ||
== Return Value == | == Return Value == | ||
The current game time in terms of "game days passed". | The current game time in terms of "game days passed". | ||
== Examples == | == Examples == |
Latest revision as of 10:15, 13 September 2024
Member of: Utility Script
Obtains the current game time in terms of game days passed (same as the global variable)
Syntax[edit | edit source]
float Function GetCurrentGameTime() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
The current game time in terms of "game days passed".
Examples[edit | edit source]
; What is the current in-game time?
Debug.Trace("The current time is: " + Utility.GetCurrentGameTime() + " in game days passed")