From bd9241219c351144e54a72feeb352fe91bdd3be9 Mon Sep 17 00:00:00 2001 From: KadeDev Date: Tue, 9 Mar 2021 13:17:34 -0800 Subject: [PATCH] even faster camera movement --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index abc7342..b9e6d3c 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -692,7 +692,7 @@ class PlayState extends MusicBeatState add(camFollow); - FlxG.camera.follow(camFollow, LOCKON, 0.008); + FlxG.camera.follow(camFollow, LOCKON, 0.01); // FlxG.camera.setScrollBounds(0, FlxG.width, 0, FlxG.height); FlxG.camera.zoom = defaultCamZoom; FlxG.camera.focusOn(camFollow.getPosition());