From 128afcaad1ea7abee6b122c1ce085f2b6e0ccedc Mon Sep 17 00:00:00 2001 From: Abnormal <86753001+AbnormalPoof@users.noreply.github.com> Date: Thu, 17 Oct 2024 11:37:32 -0500 Subject: [PATCH] quick fixin --- source/funkin/play/stage/Stage.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/stage/Stage.hx b/source/funkin/play/stage/Stage.hx index ec58607bf6..2b5942261c 100644 --- a/source/funkin/play/stage/Stage.hx +++ b/source/funkin/play/stage/Stage.hx @@ -454,8 +454,8 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass implements character.cameraFocusPoint.x += stageCharData.cameraOffsets[0]; character.cameraFocusPoint.y += stageCharData.cameraOffsets[1]; - character.scrollFactor.x += stageCharData.scroll[0]; - character.scrollFactor.y += stageCharData.scroll[1]; + character.scrollFactor.x = stageCharData.scroll[0]; + character.scrollFactor.y = stageCharData.scroll[1]; character.alpha = stageCharData.alpha; character.angle = stageCharData.angle;