Remove some spammy trace calls.

This commit is contained in:
EliteMasterEric 2024-09-21 20:33:51 -04:00
parent 2c73b241e8
commit 6c743b3b89
3 changed files with 4 additions and 10 deletions

View file

@ -1411,13 +1411,6 @@ class PlayState extends MusicBeatSubState
trace(correctSync); trace(correctSync);
resyncVocals(); resyncVocals();
} }
else
{
trace("NO VOCAL SYNC NEEDED");
if (vocals != null) trace(vocals.checkSyncError(correctSync));
trace(FlxG.sound.music.time);
trace(correctSync);
}
} }
// Only bop camera if zoom level is below 135% // Only bop camera if zoom level is below 135%
@ -2396,9 +2389,9 @@ class PlayState extends MusicBeatSubState
if (targetNote == null) continue; if (targetNote == null) continue;
// Judge and hit the note. // Judge and hit the note.
trace('Hit note! ${targetNote.noteData}'); // trace('Hit note! ${targetNote.noteData}');
goodNoteHit(targetNote, input); goodNoteHit(targetNote, input);
trace('Score: ${songScore}'); // trace('Score: ${songScore}');
notesInDirection.remove(targetNote); notesInDirection.remove(targetNote);

View file

@ -95,7 +95,6 @@ class PopUpStuff extends FlxTypedGroup<FunkinSprite>
if (numScore == null) continue; if (numScore == null) continue;
numScore.x = (FlxG.width * 0.507) - (36 * daLoop) - 65; numScore.x = (FlxG.width * 0.507) - (36 * daLoop) - 65;
trace('numScore($daLoop) = ${numScore.x}');
numScore.y = (FlxG.camera.height * 0.44); numScore.y = (FlxG.camera.height * 0.44);
numScore.x += offsets[0]; numScore.x += offsets[0];

View file

@ -344,6 +344,8 @@ class MainMenuState extends MusicBeatState
} }
} }
Conductor.instance.update();
// Open the debug menu, defaults to ` / ~ // Open the debug menu, defaults to ` / ~
// This includes stuff like the Chart Editor, so it should be present on all builds. // This includes stuff like the Chart Editor, so it should be present on all builds.
if (controls.DEBUG_MENU) if (controls.DEBUG_MENU)