Interface CardAnimation<T>

interface CardAnimation<T> {
    animation?: BgaAnimation<BgaElementAnimationSettings>;
    fromElement?: HTMLElement;
    fromStock?: CardStock<T>;
    originalSide?: "front" | "back";
    rotationDelta?: number;
}

Type Parameters

  • T

Properties

animation?: BgaAnimation<BgaElementAnimationSettings>

An animation function, that return a Promise at the end of animation (the promise returns true if animation ended, false otherwise)

fromElement?: HTMLElement

The element to move the card from.

fromStock?: CardStock<T>

The stock to take the card. It will automatically remove the card from the other stock.

originalSide?: "front" | "back"

The side before animation.

rotationDelta?: number

If the card is rotated at the start of animation.

Generated using TypeDoc