From 59cfe09c1d858e1cfdbc2305e49165d9a157259f Mon Sep 17 00:00:00 2001 From: KadeDev Date: Tue, 9 Mar 2021 12:52:37 -0800 Subject: [PATCH] forogt strum line for downscroll --- source/PlayState.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/PlayState.hx b/source/PlayState.hx index 919a502..6f173be 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -662,9 +662,13 @@ class PlayState extends MusicBeatState Conductor.songPosition = -5000; + strumLine = new FlxSprite(0, 50).makeGraphic(FlxG.width, 10); strumLine.scrollFactor.set(); + if (FlxG.save.data.downscroll) + strumLine.y = FlxG.height - 165; + strumLineNotes = new FlxTypedGroup(); add(strumLineNotes);