2

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.

HoloLady
  • 1,041
  • 1
  • 12
  • 28
Zankhna
  • 4,570
  • 9
  • 62
  • 103

0 Answers0