From 70c7af16677599422c31aed72888492ed87f57f8 Mon Sep 17 00:00:00 2001 From: JVN-Pixels <146671762+JVNpixels@users.noreply.github.com> Date: Sun, 10 Nov 2024 08:30:55 -0800 Subject: [PATCH 1/2] Fix left in debug feature in ResultsState.hx --- source/funkin/play/ResultState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx index 7a2a015b7..eb0150bde 100644 --- a/source/funkin/play/ResultState.hx +++ b/source/funkin/play/ResultState.hx @@ -721,12 +721,12 @@ class ResultState extends MusicBeatSubState } } - if (FlxG.keys.justPressed.RIGHT) speedOfTween.x += 0.1; + /*if (FlxG.keys.justPressed.RIGHT) speedOfTween.x += 0.1; if (FlxG.keys.justPressed.LEFT) { speedOfTween.x -= 0.1; - } + }*/ if (controls.PAUSE) { From 11f0454769fe37dec8db9a93e04a9ad35bfe2d7a Mon Sep 17 00:00:00 2001 From: JVN-Pixels <146671762+JVNpixels@users.noreply.github.com> Date: Sun, 10 Nov 2024 14:26:48 -0800 Subject: [PATCH 2/2] Update ResultState.hx --- source/funkin/play/ResultState.hx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx index eb0150bde..b1bdb3f28 100644 --- a/source/funkin/play/ResultState.hx +++ b/source/funkin/play/ResultState.hx @@ -721,12 +721,14 @@ class ResultState extends MusicBeatSubState } } - /*if (FlxG.keys.justPressed.RIGHT) speedOfTween.x += 0.1; + #if debug + if (FlxG.keys.justPressed.RIGHT) speedOfTween.x += 0.1; if (FlxG.keys.justPressed.LEFT) { speedOfTween.x -= 0.1; - }*/ + } + #end if (controls.PAUSE) {