In UKismetStringLibrary there is a function called TimeSecondsToString that converts float seconds to a formatted string time. The comment says “/** Convert a number of seconds into minutes:seconds.milliseconds format string */” but if you look at the code and the formatted string it actually comes back as return FString::Printf(TEXT("%02d:%02d:%02d"), NumMinutes, NumSeconds, NumCentiseconds);
If you see it’s actually formatted as Seconds:Milliseconds not Seconds.Milliseconds
Thanks!