Hello,
I’m trying to submit a time score to apple’s Game Center, and it requires a ‘System.Int64’, although the documentation says an example of the time score can be: Elapsed Time (hours, minutes, seconds, ex. 5:01:18).
For testing purposes, I thought I could get away with doing this:
var randomTime = Random.Range(0,3) + ":" + Random.Range(0, 60) + ":" + Random.Range(0, 60);
But that gives out a string, so how can I make this work?