与えられた Leaderboard のデフォルトのスコアのセットを読み込みます
これはデフォルトの Leaderboard の引数を使用します。
using UnityEngine; using UnityEngine.SocialPlatforms; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { Social.LoadScores("Leaderboard01", scores => { if (scores.Length > 0) { Debug.Log("Got " + scores.Length + " scores"); string myScores = "Leaderboard:\n"; foreach (IScore score in scores) myScores += "\t" + score.userID + " " + score.formattedValue + " " + score.date + "\n"; Debug.Log(myScores); } else Debug.Log("No scores loaded"); }); } }