Hi
I need to convert the wallclocktime value to milliseconds to submit to leaderboard as required.
Leaderboard score specification:
Time leaderboards present scores in hours / minutes / seconds / hundredths of a second format. You must submit scores as milliseconds, so 66032 would be interpreted as 1:06.03.
I tried simply multiply the value by 1000 but not worked.
I'm using this: floor(wallclocktime_var*1000).
Thanks in advance for any help.