public static string GetLevelRecordAsString(string levelName) { float levelRecord = SaveManager.GetLevelRecord(levelName); if (levelRecord > 0.0f) { return(FormatTime.FormatLevelTime(levelRecord)); } else { return("None"); } }
public static float GetLevelRecordAsFloat(string levelName) { return(SaveManager.GetLevelRecord(levelName)); }