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:
parent
bc8f506193
commit
3aa4591bab
|
@ -103,7 +103,7 @@ class StrumlineNote extends FlxSprite
|
|||
|
||||
public function playStatic():Void
|
||||
{
|
||||
this.active = false;
|
||||
this.active = true;
|
||||
this.playAnimation('static', true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue