mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-06 04:04:23 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class StrumlineNote extends FlxSprite
|
|||
|
||||
public function playStatic():Void
|
||||
{
|
||||
this.active = false;
|
||||
this.active = true;
|
||||
this.playAnimation('static', true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue