Interface IPlayer
Namespace: Unity.Services.Multiplayer
Assembly: Unity.Services.Multiplayer.dll
Syntax
public interface IPlayer
Properties
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
string Id { get; }
Property Value
| Type | Description |
|---|---|
| string |
Joined
The time at which the member joined the Session.
Declaration
DateTime Joined { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
LastUpdated
The last time the metadata for this member was updated.
Declaration
DateTime LastUpdated { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Properties
Custom game-specific properties that apply to an individual player (e.g. role or skill).
Declaration
Dictionary<string, PlayerProperty> Properties { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, PlayerProperty> |