Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


CreateAchievement()

Create an IAchievement instance.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.GameCenterModule
Warning
Deprecated. Social is deprecated and will be removed in a future release.
public static IAchievement CreateAchievement()

Returns

Type

Description

IAchievement

Examples

using UnityEngine;using UnityEngine.SocialPlatforms;public class ExampleClass : MonoBehaviour{ void Example() { IAchievement achievement = Social.CreateAchievement(); achievement.id = "Achievement01"; achievement.percentCompleted = 100.0; achievement.ReportProgress(result => { if (result) Debug.Log("Successfully reported progress"); else Debug.Log("Failed to report progress"); }); }}