Skip to content

Commit

Permalink
uncomment a few traces for a bit of troubleshoting
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Dec 3, 2024
1 parent 29992fc commit 8f846a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/funkin/graphics/adobeanimate/FlxAtlasSprite.hx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class FlxAtlasSprite extends FlxAnimate

// Move to the first frame of the animation.
// goToFrameLabel(id);
// trace('Playing animation $id');
trace('Playing animation $id');
if ((id == null || id == "") || this.anim.symbolDictionary.exists(id) || (this.anim.getByName(id) != null))
{
this.anim.play(id, restart, false, startFrame);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class CharSelectAtlasSprite extends FlxAnimate

// Move to the first frame of the animation.
// goToFrameLabel(id);
// trace('Playing animation $id');
trace('Playing animation $id');
if ((id == null || id == "") || this.anim.symbolDictionary.exists(id) || (this.anim.getByName(id) != null))
{
this.anim.play(id, restart, false, startFrame);
Expand Down

0 comments on commit 8f846a5

Please sign in to comment.