Fix issue where strumline would stay pressed when resetting.

This commit is contained in:
EliteMasterEric 2023-08-03 12:19:36 -04:00
parent 4e1a5d6d65
commit 29466af4b7

View file

@ -509,6 +509,13 @@ class Strumline extends FlxSpriteGroup
if (cover == null) continue;
cover.kill();
}
heldKeys = [false, false, false, false];
for (dir in DIRECTIONS)
{
playStatic(dir);
}
}
public function applyNoteData(data:Array<SongNoteData>):Void