* make the laser anim faster on songwheel

This commit is contained in:
FajsiEx 2021-08-18 18:41:33 +02:00
parent 826afb1d80
commit 18c0388543
1 changed files with 1 additions and 1 deletions

View File

@ -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