Description
Wiki Description
Converts the passed-in game time (in game days passed) to a string detailing the date and time it represents. The resulting format is: "MM/DD/YYYY HH:MM" and uses a 24-hour clock.
Documentation Comment
Converts a float game time (in terms of game days passed) to a string detailing the date
and time it represents in "MM/DD/YYYY HH:MM" format. A 24-hour clock is used, and the function
is latent (due to issues in the current architecture with returning strings from code)
Parameters
floatafGameTime
CK Wiki Description
The game time to convert to a string - in game days passed.
Examples
No human-generated examples found for this function.
Auto-Generated Example
float myFloat__afGameTime
string returnedValue = Utility.GameTimeToString(myFloat__afGameTime)