Ajustement des vitesses de scroll

This commit is contained in:
Mattéo Delabre 2016-04-10 01:30:09 +02:00
parent ef5ecc810d
commit 8abbadb18c
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@
const sf::Color SELECT_RECT_COLOR = sf::Color(33, 33, 33, 40);
const sf::Color SELECT_RECT_BORDER_COLOR = sf::Color(33, 33, 33, 127);
const float WHEEL_SCROLL_SPEED = -4.f;
const float POINTER_SCROLL_SPEED = 4.f;
const float WHEEL_SCROLL_SPEED = -8.f;
const float POINTER_SCROLL_SPEED = 8.f;
const float POINTER_SCROLL_MAX_SPEED = 10.f;
const float POINTER_SCROLL_STEP = 64.f;
const float ASSUME_TITLEBAR = 32.f;