Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ReportScore(long, string, Action<bool>)

Report a score to a specific leaderboard.
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 void ReportScore(long score, string board, Action<bool> callback)

Parameters

score


board


callback

Examples

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"); }); }}