Hi guys,
I’ve been trying to add gamecenter support for achievements and this is what I do for unlock achievement request. Everything works, the achievement unlock properly and all but one thing bothers me, is that the showsCompletionBanner does nothing on device.
Isn’t it suppose to show unlock achivement popup from gamecenter? I’m already on iOS 6.0 (ipod touch 5th gen) so I don’t think it’s iOS issue.
Here’s my simple code
gameNetwork.request( "unlockAchievement", { achievement = { identifier=achievementsID[math.floor(i/5)], percentComplete=100, showsCompletionBanner=true, }, listener=function() print("unlocked achievements") end })
Has anyone have this problem before? or what does showsCompletionBanner = true suppose to show/do anyway?
Thanks