Class Leaderboards.BoardDefinition
Additional content information
Namespace: Unity.PSN.PS5.Leaderboard
Syntax
public class BoardDefinition
Properties
EntryLimit
Maximum value for the number of entries that can be recorded on a leaderboard
Declaration
public int EntryLimit { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Fields
These are the components of the leaderboard specification
Declaration
public Leaderboards.BoardFields.Flags Fields { get; set; }
Property Value
| Type | Description |
|---|---|
| Leaderboards.BoardFields.Flags |
LargeDataNumLimit
The lowest rank (where the player who scored first is ranked higher if there is a tie in terms of points) at which a player can record large-volume attachment data. Only players positioned at this rank or better can record such data.
Declaration
public int LargeDataNumLimit { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
LargeDataSizeLimit
Maximum size (in bytes) for large-volume attached data
Declaration
public long LargeDataSizeLimit { get; }
Property Value
| Type | Description |
|---|---|
| Int64 |
MaxScoreLimit
Maximum score value that can be set
Declaration
public long MaxScoreLimit { get; }
Property Value
| Type | Description |
|---|---|
| Int64 |
MinScoreLimit
Minimum score value that can be set
Declaration
public long MinScoreLimit { get; }
Property Value
| Type | Description |
|---|---|
| Int64 |
SortMode
Score sorting order. Ascending (scores are displayed higher-up the smaller they are), and Descending (scores are displayed higher-up the larger they are).
Declaration
public Leaderboards.SortModes SortMode { get; }
Property Value
| Type | Description |
|---|---|
| Leaderboards.SortModes |
UpdateMode
Score update rules. update_with_best_score means that a player's score can only be updated when it is his or her personal best, and update_always means that scores can always be updated.
Declaration
public Leaderboards.UpdateModes UpdateMode { get; }
Property Value
| Type | Description |
|---|---|
| Leaderboards.UpdateModes |