Skip to content

Commit

Permalink
quick fixin
Browse files Browse the repository at this point in the history
  • Loading branch information
AbnormalPoof authored and EliteMasterEric committed Feb 18, 2025
1 parent f6d9d29 commit 128afca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/funkin/play/stage/Stage.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 128afca

Please sign in to comment.