From 9ec32bc00bec13d50dcb80440d9d9e022459acf3 Mon Sep 17 00:00:00 2001 From: KadeDev Date: Tue, 9 Mar 2021 12:57:59 -0800 Subject: [PATCH] fixed camera fast (its no longer fast) --- source/PlayState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 6f173be..564dca7 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -668,7 +668,7 @@ class PlayState extends MusicBeatState if (FlxG.save.data.downscroll) strumLine.y = FlxG.height - 165; - + strumLineNotes = new FlxTypedGroup(); add(strumLineNotes); @@ -692,7 +692,7 @@ class PlayState extends MusicBeatState add(camFollow); - FlxG.camera.follow(camFollow, LOCKON, 0.04); + FlxG.camera.follow(camFollow, LOCKON, 0.004); // FlxG.camera.setScrollBounds(0, FlxG.width, 0, FlxG.height); FlxG.camera.zoom = defaultCamZoom; FlxG.camera.focusOn(camFollow.getPosition());