Scale up button in default style (instead of scale down). Faster animation

This commit is contained in:
Insality
2020-04-13 19:35:32 +03:00
parent 8815ca8896
commit 0539746519
2 changed files with 4 additions and 4 deletions

View File

@@ -5,9 +5,9 @@ local M = {}
M["button"] = {
HOVER_SCALE = vmath.vector3(-0.025, -0.025, 1),
HOVER_TIME = 0.05,
SCALE_CHANGE = vmath.vector3(-0.05, -0.05, 1),
HOVER_SCALE = vmath.vector3(0.02, 0.02, 1),
HOVER_TIME = 0.04,
SCALE_CHANGE = vmath.vector3(0.035, 0.035, 1),
BTN_SOUND = "click",
BTN_SOUND_DISABLED = "click",
DISABLED_COLOR = vmath.vector4(0, 0, 0, 1),