mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-12-02 04:17:07 -05:00
busted input fix (breaks pyro test probably)
This commit is contained in:
parent
a40a4663d8
commit
5f98aa7fb5
1 changed files with 4 additions and 1 deletions
|
@ -1310,7 +1310,10 @@ class PlayState extends MusicBeatState
|
||||||
oldNote = null;
|
oldNote = null;
|
||||||
|
|
||||||
var swagNote:Note = new Note(daStrumTime, daNoteData, oldNote);
|
var swagNote:Note = new Note(daStrumTime, daNoteData, oldNote);
|
||||||
swagNote.data = songNotes;
|
// swagNote.data = songNotes;
|
||||||
|
swagNote.data.sustainLength = songNotes.sustainLength;
|
||||||
|
swagNote.data.altNote = songNotes.altNote;
|
||||||
|
|
||||||
swagNote.scrollFactor.set(0, 0);
|
swagNote.scrollFactor.set(0, 0);
|
||||||
|
|
||||||
var susLength:Float = swagNote.data.sustainLength;
|
var susLength:Float = swagNote.data.sustainLength;
|
||||||
|
|
Loading…
Reference in a new issue