I am intretsetd in using Google Play Game Services. I was wondering if loadAchievements returns the same info we get from Game Center? From the docs:
loadAchievements: Loads a list of the user’s
completed achievements for the app and returns an array of items
(tables) representing each achievement in the callback listener.
event.data in callback listener is an array of items that have the following properties (each representing an achievement):
- identifier (string)
- percentComplete (number)
- isCompleted (boolean)
- isHidden (boolean)
- lastReportedDate (string)
- showsCompletionBanner (boolean, iOS 5+ only, will be nil otherwise)
Thanks!