Class Player
Information about a specific player creating, joining, or already in a lobby.
Namespace: Unity.Services.Lobbies.Models
Syntax
[Preserve]
public class Player
Constructors
Player(String, String, Dictionary<String, PlayerDataObject>, String, DateTime, DateTime, PlayerProfile)
Information about a specific player creating, joining, or already in a lobby.
Declaration
[Preserve]
public Player(string id = null, string connectionInfo = null, Dictionary<string, PlayerDataObject> data = null, string allocationId = null, DateTime joined = default(DateTime), DateTime lastUpdated = default(DateTime), PlayerProfile profile = null)
Parameters
Type | Name | Description |
---|---|---|
String | id | The unique identifier for the player. If not provided for a create or join request, it will be set to the ID of the caller. |
String | connectionInfo | Connection information for connecting to a relay with this player. |
Dictionary<String, PlayerDataObject> | data | Custom game-specific properties that apply to an individual player (e.g. |
String | allocationId | The |
DateTime | joined | The time at which the player joined the lobby. |
DateTime | lastUpdated | The last time the metadata for this player was updated. |
PlayerProfile | profile | profile param |
Properties
AllocationId
The allocationId
from the Relay service which associates this player in this lobby with a persistent connection. When a disconnect notification is received, this value is used to identify the associated player in a lobby to mark them as disconnected.
Declaration
[Preserve]
public string AllocationId { get; }
Property Value
Type | Description |
---|---|
String |
ConnectionInfo
Connection information for connecting to a relay with this player.
Declaration
[Preserve]
public string ConnectionInfo { get; }
Property Value
Type | Description |
---|---|
String |
Data
Custom game-specific properties that apply to an individual player (e.g. role
or skill
).
Declaration
[Preserve]
public Dictionary<string, PlayerDataObject> Data { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<String, PlayerDataObject> |
Id
The unique identifier for the player. If not provided for a create or join request, it will be set to the ID of the caller.
Declaration
[Preserve]
public string Id { get; }
Property Value
Type | Description |
---|---|
String |
Joined
The time at which the player joined the lobby.
Declaration
[Preserve]
public DateTime Joined { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
LastUpdated
The last time the metadata for this player was updated.
Declaration
[Preserve]
public DateTime LastUpdated { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Profile
Parameter profile of Player
Declaration
[Preserve]
public PlayerProfile Profile { get; set; }
Property Value
Type | Description |
---|---|
PlayerProfile |