mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
Remove some spammy trace calls.
This commit is contained in:
parent
2c73b241e8
commit
6c743b3b89
|
@ -1411,13 +1411,6 @@ class PlayState extends MusicBeatSubState
|
|||
trace(correctSync);
|
||||
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%
|
||||
|
@ -2396,9 +2389,9 @@ class PlayState extends MusicBeatSubState
|
|||
if (targetNote == null) continue;
|
||||
|
||||
// Judge and hit the note.
|
||||
trace('Hit note! ${targetNote.noteData}');
|
||||
// trace('Hit note! ${targetNote.noteData}');
|
||||
goodNoteHit(targetNote, input);
|
||||
trace('Score: ${songScore}');
|
||||
// trace('Score: ${songScore}');
|
||||
|
||||
notesInDirection.remove(targetNote);
|
||||
|
||||
|
|
|
@ -95,7 +95,6 @@ class PopUpStuff extends FlxTypedGroup<FunkinSprite>
|
|||
if (numScore == null) continue;
|
||||
|
||||
numScore.x = (FlxG.width * 0.507) - (36 * daLoop) - 65;
|
||||
trace('numScore($daLoop) = ${numScore.x}');
|
||||
numScore.y = (FlxG.camera.height * 0.44);
|
||||
|
||||
numScore.x += offsets[0];
|
||||
|
|
|
@ -344,6 +344,8 @@ class MainMenuState extends MusicBeatState
|
|||
}
|
||||
}
|
||||
|
||||
Conductor.instance.update();
|
||||
|
||||
// Open the debug menu, defaults to ` / ~
|
||||
// This includes stuff like the Chart Editor, so it should be present on all builds.
|
||||
if (controls.DEBUG_MENU)
|
||||
|
|
Loading…
Reference in a new issue