Retrieving player information
Retrieve information about the current signed in player or other players.
Example
var player = await CoreServices.GetPlayerInfo("INSERT_PLAYER_UID_HERE");
// Access player information (e.g. player.DisplayName, player.Metadata, etc.)Getting the total number of players
Example
var playerCount = await CoreServices.GetPlayerCount();Last updated