Interface ShuffleAnimationSettings<T>

interface ShuffleAnimationSettings<T> {
    animatedCardsMax?: number;
    fakeCardSetter?: ((card, index) => void);
    newTopCard?: T;
    pauseDelayAfterAnimation?: number;
}

Type Parameters

  • T

Properties

animatedCardsMax?: number

Number of cards used for the animation (will use cardNumber is inferior to this number). Default: 10.

fakeCardSetter?: ((card, index) => void)

Card generator for the animated card. Should only show the back of the cards. Default if fakeCardGenerator from Deck (or Manager if unset in Deck).

Type declaration

    • (card, index): void
    • Card generator for the animated card. Should only show the back of the cards. Default if fakeCardGenerator from Deck (or Manager if unset in Deck).

      Parameters

      • card: T
      • index: number

      Returns void

newTopCard?: T

The top card after the shuffle animation. Default is a card generated with fakeCardGenerator from Deck (or Manager if unset in Deck).

pauseDelayAfterAnimation?: number

Time to wait after shuffle, in case it is chained with other animations, to let the time to understand it's 2 different animations. Default is 500ms.

Generated using TypeDoc