phaser - v3.90.0
    Preparing search index...

    Type Alias LeaderboardScore

    type LeaderboardScore = {
        data: string;
        playerID: string;
        playerName: string;
        playerPhotoURL: string;
        rank: integer;
        score: integer;
        scoreFormatted: string;
        timestamp: integer;
    }
    Index

    Properties

    data: string

    The developer-specified payload associated with the score, or null if one was not set.

    playerID: string

    The game's unique identifier for the player.

    playerName: string

    The player's localized display name.

    playerPhotoURL: string

    A url to the player's public profile photo.

    rank: integer

    The entry's leaderboard ranking.

    score: integer

    An integer score value.

    scoreFormatted: string

    The score value, formatted with the score format associated with the leaderboard.

    timestamp: integer

    The Unix timestamp of when the leaderboard entry was last updated.