GetCurrentGameTime - Utility

From the Fallout4 CreationKit Wiki
Revision as of 10:43, 28 September 2010 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Utility Script Obtains the current game time in terms of game days passed (same as the global variable) == Synt…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Utility Script

Obtains the current game time in terms of game days passed (same as the global variable)

Syntax

float Function GetCurrentGameTime() native

Parameters

None.

Return Value

The current game time in terms of "game days passed".

Examples

; What is the current in-game time?
Debug.Trace("The current time is: " + Utility.GetCurrentGameTime() + " in game days passed")

See Also