Posted: 17th Nov 2011 9:46
in my game ,I feel Timer() return seconds , instead of milliseconds.

How do others think about it?
Posted: 17th Nov 2011 10:08
It does return seconds but it's a float that's returned, IE. 1.0625 = 1 and 1/16th seconds.

If you want milliseconds you have to multiply by 1000.
Posted: 17th Nov 2011 11:32
@baxslash : I see. Thank you.