From 744753f215a0de2d59be14eff74757b7f90cc658 Mon Sep 17 00:00:00 2001 From: Lucy Date: Tue, 2 Jul 2024 15:15:28 -0400 Subject: [PATCH] Center strumline background on Blazin --- preload/scripts/songs/blazin.hxc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/preload/scripts/songs/blazin.hxc b/preload/scripts/songs/blazin.hxc index 030036b5d..f126e734d 100644 --- a/preload/scripts/songs/blazin.hxc +++ b/preload/scripts/songs/blazin.hxc @@ -77,9 +77,11 @@ class BlazinSong extends Song { // This is a song gimmick we are never making middlescroll an option. var playerStrumline:FlxSprite = PlayState.instance.playerStrumline; + var strumlineBackground:FlxSprite = PlayState.instance.strumlineBackground; if (playerStrumline != null) { playerStrumline.x = FlxG.width / 2 - playerStrumline.width / 2; + strumlineBackground.x = (FlxG.width / 2 - playerStrumline.width / 2) - 15; } }