From 03c150201ebfcfbf73f5bc565447e23a2fb447ec Mon Sep 17 00:00:00 2001 From: Sector03 <61670787+Sector03@users.noreply.github.com> Date: Tue, 18 May 2021 16:34:23 -0400 Subject: [PATCH] magenta menu bg scroll factor fix idk why this was changed in the first place but the scrollfactor is now the same as the yellow bg so it doesn't jitter up and down a little bit when menu flashes --- source/MainMenuState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/MainMenuState.hx b/source/MainMenuState.hx index 63e3c0e..dc699de 100644 --- a/source/MainMenuState.hx +++ b/source/MainMenuState.hx @@ -73,7 +73,7 @@ class MainMenuState extends MusicBeatState magenta = new FlxSprite(-80).loadGraphic(Paths.image('menuDesat')); magenta.scrollFactor.x = 0; - magenta.scrollFactor.y = 0.18; + magenta.scrollFactor.y = 0.15; magenta.setGraphicSize(Std.int(magenta.width * 1.1)); magenta.updateHitbox(); magenta.screenCenter();