Loads the achievement descriptions accociated with this application.
Social.LoadAchievementDescriptions (descriptions => {
if (descriptions.Length > 0) {
Debug.Log ("Got " + descriptions.Length + " achievement descriptions");
string achievementDescriptions = "Achievement Descriptions:\n";
foreach (IAchievementDescription ad in descriptions) {
achievementDescriptions += "\t" +
ad.id + " " +
ad.title + " " +
ad.unachievedDescription + "\n";
}
Debug.Log (achievementDescriptions);
}
else
Debug.Log ("Failed to load achievement descriptions");
});