This commit is contained in:
FajsiEx 2021-10-28 17:51:27 +02:00
parent 2f9e66cbd5
commit 1d62585f7e
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ local tickTransitions = function (deltaTime)
transitionShakeScale = 0
end
if (transitionShakeScale < 0.33) then
if (transitionShakeScale < 1/3) then
transitionShakePosOffset = 0;
elseif (transitionShakeScale > 0.66) then
elseif (transitionShakeScale > 2/3) then
transitionShakePosOffset = -1;
else
transitionShakePosOffset = 1;