Version: 5.6
public static void ResetAllAchievements (Action<bool> callback);

説明

ローカルユーザーの Achievement をすべてリセットします

現在実行しているゲームのみ影響します。 Javascript コードサンプル:

using UnityEngine;
using UnityEngine.SocialPlatforms.GameCenter;

public class Reset : MonoBehaviour { void Start() { GameCenterPlatform.ResetAllAchievements((resetResult) => { Debug.Log((resetResult) ? "Reset done." : "Reset failed."); }); } }