Hi,
I use:
var t = rawtime(0,inv("1s"))*1000;
var d = new Date( tTick );
And then use
debugPrintln( d );
to print out a readable time format for a tick.
Since rawtime() only accepts "1s" as the smallest time interval, that means I can only find out the time of tick up the the precision of seconds.
Am I correct or is there any method to determine the time of tick up to milliseconds?
Thanks a lot.
I use:
var t = rawtime(0,inv("1s"))*1000;
var d = new Date( tTick );
And then use
debugPrintln( d );
to print out a readable time format for a tick.
Since rawtime() only accepts "1s" as the smallest time interval, that means I can only find out the time of tick up the the precision of seconds.
Am I correct or is there any method to determine the time of tick up to milliseconds?
Thanks a lot.
Comment