mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-17 04:11:23 -05:00
Fix issue where strumline would stay pressed when resetting.
This commit is contained in:
parent
4e1a5d6d65
commit
29466af4b7
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue