blob: e6e2bbce37a5853974222140c0cf28692c5a5053 (
plain)
1
2
3
4
5
6
7
8
|
package ui
const (
// The atlas of the ebiten wasm port does not allow as big imaes as the linux version.
// Therefore, we scale the deck view to reduce its size.
// FIXME: This is only needed because the cardView rendering is very naiv.
DRAFT_DECK_VIEW_SCALE = 0.35
)
|