I want to implement incremental achievement, if I get a score 10 then it should unlock an achievement for that. Likewise I have created achievement for the scores 40 , 100 etc.
I am currently using this method:
if(score == 10)
{
PlayGamesPlatform.Instance.IncrementAchievement(
"Cfjewijawiu_QA", 40, (bool success) => {
// handle success or failure
});
}
I have written this in the Update() method. The same way as when the score reaches 40. I am using corresponding achievementid to unlock that.
But my achievement is not getting unlocked. What can be the reason?
Thanks for help in advance.