I'm trying to get the progress of a count achievement. I can access Achievement.IsUnlocked and Achievement.Name but is there any way to get the current progress before it's unlocked. Something like Achievement.Count
foreach (var newAchievement in msg.Data){
if (newAchievement.IsUnlocked){ }else{ int currentProgress = newAchievement.Count; } }
For anyone interested as it's not clear in the documentation, you can actually use Achievement.Count. I also found the full list in AchievementProgress.cs: