CreateAchievement()
Create an IAchievement instance.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.GameCenterModule
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"); }); }}