Correction d'un bug : les tokens qui s'agrandissaient trop quand on les prenait

This commit is contained in:
doto 2024-03-13 19:53:18 +01:00
parent b237bd7485
commit ac331e151c

View File

@ -7,7 +7,7 @@ import arcade
import cubito
import os.path
SCREEN_MULTILPLIER = 1.5
SCREEN_MULTILPLIER = 1
SCREEN_MULTILPLIER /= 4
# Screen title and size
@ -23,7 +23,7 @@ TOKEN_HEIGHT = int(160 * SCREEN_MULTILPLIER)
TOKEN_WIDTH = int(160 * SCREEN_MULTILPLIER)
# Token scale
HELD_TOKEN_SCALE_MULTILPLIER = 4 * SCREEN_MULTILPLIER
HELD_TOKEN_SCALE_MULTILPLIER = 1.4
# Space between tokens
X_SPACING_TOKEN = int(45*SCREEN_MULTILPLIER + TOKEN_WIDTH)