/// <summary>
 ///
 /// </summary>
 /// <param name="total">The total points in this formula's units</param>
 /// <returns></returns>
 public float LevelProgress(float total)
 {
     return(minFormula.LevelProgress(total * equivalentMin) / equivalentMin);
 }
Exemple #2
0
 /// <summary>
 /// Returns the value accrued since reaching the current level
 /// </summary>
 /// <returns></returns>
 public float LevelProgress()
 {
     return(formula.LevelProgress(Total()));
 }