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

Fixed Modded StrumlineNote Sprite Looping Animation

Within the playStatic function on the StrumlineNote.hx, setting this.active = true; will fix looping animations for modded in StrumlineNote sprites. Leaving this.active = false; will stop any modded StrumlineNote sprite animation when the player or opponent hits chart notes.
This commit is contained in:
DaWaterMalone 2024-10-04 12:53:40 -05:00 committed by Eric
parent bc8f506193
commit 3aa4591bab

View file

@ -103,7 +103,7 @@ class StrumlineNote extends FlxSprite
public function playStatic():Void
{
this.active = false;
this.active = true;
this.playAnimation('static', true);
}