Ejemplo n.º 1
0
        public static string GetLevelRecordAsString(string levelName)
        {
            float levelRecord = SaveManager.GetLevelRecord(levelName);

            if (levelRecord > 0.0f)
            {
                return(FormatTime.FormatLevelTime(levelRecord));
            }
            else
            {
                return("None");
            }
        }
Ejemplo n.º 2
0
 public static float GetLevelRecordAsFloat(string levelName)
 {
     return(SaveManager.GetLevelRecord(levelName));
 }