Difference between revisions of "Function for Time of Day"

Jump to navigation Jump to search
33 bytes removed ,  02:31, 23 February 2012
Undo revision 29046 by Daemonjax (talk) testing my conclusion ingame seems impossible
imported>Daemonjax
(casting Time to an int is faster than calling Math.Floor())
imported>Daemonjax
(Undo revision 29046 by Daemonjax (talk) testing my conclusion ingame seems impossible)
Line 11: Line 11:


float Time = Utility.GetCurrentGameTime()
float Time = Utility.GetCurrentGameTime()
Time -= (Time as int) ; Remove "previous in-game days passed" bit, and faster than using Math.Floor()
Time -= Math.Floor(Time) ; Remove "previous in-game days passed" bit
Time *= 24 ; Convert from fraction of a day to number of hours
Time *= 24 ; Convert from fraction of a day to number of hours
Return Time
Return Time
Anonymous user

Navigation menu