From 686d6ee24e337f7e9a5a1240540d6ac11a9e7d30 Mon Sep 17 00:00:00 2001 From: MarioGuy Date: Tue, 18 Aug 2026 18:29:52 -0400 Subject: [PATCH] we do not need this --- source/funkin/game/HudCamera.hx | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/source/funkin/game/HudCamera.hx b/source/funkin/game/HudCamera.hx index 0d7402977f..50805d0c76 100644 --- a/source/funkin/game/HudCamera.hx +++ b/source/funkin/game/HudCamera.hx @@ -11,27 +11,10 @@ class HudCamera extends FlxCamera { * Keeps the sprites not flipped, but the positions are flipped. */ public var downscroll:Bool = false; - //public override function update(elapsed:Float) { - // super.update(elapsed); - // // flipY = downscroll; - //} - - - // public override function drawPixels(?frame:FlxFrame, ?pixels:BitmapData, matrix:FlxMatrix, ?transform:ColorTransform, ?blend:BlendMode, ?smoothing:Bool = false, - // ?shader:FlxShader):Void - // { - // if (downscroll) { - // matrix.scale(1, -1); - // matrix.translate(0, height); - // } - // super.drawPixels(frame, pixels, matrix, transform, blend, smoothing, shader); - // } - - public override function alterScreenPosition(spr:FlxObject, pos:FlxPoint) { if (downscroll) { pos.set(pos.x, height - pos.y - spr.height); } return pos; } -} \ No newline at end of file +}