Version: 5.4
public static void ReportScore (long score, string board, Action<bool> callback);

説明

特定の Leaderboard にスコアを報告します

using UnityEngine;
using UnityEngine.SocialPlatforms;
using System.Collections;

public class ExampleClass : MonoBehaviour { void ReportScore (long score, string leaderboardID) { Debug.Log ("Reporting score " + score + " on leaderboard " + leaderboardID); Social.ReportScore (score, leaderboardID, success => { Debug.Log(success ? "Reported score successfully" : "Failed to report score"); }); } }