Optional
animationOptional
cardIndicate the height of a card (in px). Used for Deck stocks.
Optional
cardIndicate the width of a card (in px). Used for Deck stocks.
Optional
fakeA generator of fake cards, to generate decks top card automatically. Default is generating an empty card, with only id set.
the deck id
the fake card to be generated (usually, only informations to show back side)
Optional
getDefine the id that will be set to each card div. It must generate a unique id for each different card, so it's often linked to card id.
If you use different cards types that couldhave the same ids, you must define this method to make it different for each type (for example : getId: (card) => 'other-card-type-' + card.id
).
Default: the id will be set to card-${card.id}
.
Define the id that will be set to each card div. It must generate a unique id for each different card, so it's often linked to card id.
If you use different cards types that couldhave the same ids, you must define this method to make it different for each type (for example : getId: (card) => 'other-card-type-' + card.id
).
Default: the id will be set to card-${card.id}
.
the card informations
the id for a card
the card informations
the id for a card
Optional
isA function to determine if the card should show front side or back side, based on the informations of the card object.
If you only manage visible cards, set it to () => true
.
Default is card.type
is truthy.
A function to determine if the card should show front side or back side, based on the informations of the card object.
If you only manage visible cards, set it to () => true
.
Default is card.type
is truthy.
the card informations
true if front side should be visible
the card informations
true if front side should be visible
Optional
selectableThe class to apply to selectable cards. Default 'bga-cards_selectable-card'.
Optional
selectedThe class to apply to selected cards. Default 'bga-cards_selected-card'.
Optional
setupAllow to populate the back div of the card. You can set classes or dataset to show the correct card face. You can also add some translated text on the card at this moment.
Allow to populate the back div of the card. You can set classes or dataset to show the correct card face. You can also add some translated text on the card at this moment.
the card informations
the card back Div element. You can add a class, change dataset, set background for the back side
the id for a card
the card informations
the card back Div element. You can add a class, change dataset, set background for the back side
the id for a card
Optional
setupAllow to populate the main div of the card. You can set classes or dataset, if it's informations shared by both sides.
Allow to populate the main div of the card. You can set classes or dataset, if it's informations shared by both sides.
the card informations
the card main Div element. You can add a class (to set width/height), change dataset, ... based on the card informations. There should be no visual informations on it, as it will be set on front/back Divs.
the id for a card
the card informations
the card main Div element. You can add a class (to set width/height), change dataset, ... based on the card informations. There should be no visual informations on it, as it will be set on front/back Divs.
the id for a card
Optional
setupAllow to populate the front div of the card. You can set classes or dataset to show the correct card face. You can also add some translated text on the card at this moment.
Allow to populate the front div of the card. You can set classes or dataset to show the correct card face. You can also add some translated text on the card at this moment.
the card informations
the card front Div element. You can add a class, change dataset, set background for the back side
the id for a card
the card informations
the card front Div element. You can add a class, change dataset, set background for the back side
the id for a card
Optional
unselectableThe class to apply to selectable cards. Default 'bga-cards_disabled-card'.
Generated using TypeDoc
The animation manager used in the game. If not provided, a new one will be instanciated for this card manager. Useful if you use AnimationManager outside of card manager, to avoid double instanciation.