From 18c0388543f1b1f9a144e3515e35625b5e09eea0 Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Wed, 18 Aug 2021 18:41:33 +0200 Subject: [PATCH] * make the laser anim faster on songwheel --- scripts/songselect/songwheel.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index 25230ea..2e1a1c4 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -580,7 +580,7 @@ function tickTransitions(deltaTime) -- Laser anim if transitionLaserScale < 1 then - transitionLaserScale = transitionLaserScale + deltaTime / 3 -- transition should last for that time in seconds + transitionLaserScale = transitionLaserScale + deltaTime / 2 -- transition should last for that time in seconds else transitionLaserScale = 0 end