Acquiring achievements

Add achievements to your players' profiles.

When players complete tasks, you can give them achievements to help them track their progress or reward them. These achievements can boost the visibility of your game since they appear for your players' friends in the Sphere app.

To acquire achievements, you can use the AcquireAchievement method in CoreServices.

Example

await CoreServices.AcquireAchievement("achievementId");

To remove an achievement from your player's profile, use the RemoveAchievement method in CoreServices.

Example

await CoreServices.RemoveAchievement("achievementId");

Last updated