1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

Remove some spammy log traces.

This commit is contained in:
EliteMasterEric 2024-09-14 20:26:33 -04:00
parent d5c7e4ffdb
commit fd6ca6e267
2 changed files with 1 additions and 2 deletions

View file

@ -184,7 +184,7 @@ class FlxAtlasSprite extends FlxAnimate
// Move to the first frame of the animation. // Move to the first frame of the animation.
// goToFrameLabel(id); // goToFrameLabel(id);
trace('Playing animation $id'); // trace('Playing animation $id');
if ((id == null || id == "") || this.anim.symbolDictionary.exists(id) || (this.anim.getByName(id) != null)) if ((id == null || id == "") || this.anim.symbolDictionary.exists(id) || (this.anim.getByName(id) != null))
{ {
this.anim.play(id, restart, false, startFrame); this.anim.play(id, restart, false, startFrame);

View file

@ -47,7 +47,6 @@ class CharSelectPlayer extends FlxAtlasSprite implements IBPMSyncedScriptedClass
// //
if (getCurrentAnimation() == "idle") if (getCurrentAnimation() == "idle")
{ {
trace('Player beat hit');
playAnimation("idle", true, false, false); playAnimation("idle", true, false, false);
} }
}; };