bga-score-sheet
    Preparing search index...

    Interface AnimationSettings

    The animation settings.

    interface AnimationSettings {
        duration?: number;
        order?: "per-full-line" | "per-line" | "per-player";
        startBy?: number;
    }
    Index

    Properties

    duration?: number

    The duration of each cell reveal (default 800ms). Ignored if animations are not active.

    order?: "per-full-line" | "per-line" | "per-player"

    The order of reveal :

    • per-full-line will display entries one by one, the full line at the same time.
    • per-line will display the entries one by one, filling each player one by one for the entry.
    • per-player (default) will display the players one by one, filling each entry one by one for the player.
    startBy?: number

    The player to start with (ignored with order: 'per-full-line'). It's recommended to set this.player_id here, so each player will see their score first then the other ones, in order of play. Ignored for spectators that will see player's order.