mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-27 17:33:03 +00:00
have notes show up properly on scroll speeds below 1
This commit is contained in:
parent
5b62681654
commit
01288631ff
|
@ -1604,9 +1604,7 @@ class PlayState extends MusicBeatState
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unspawnNotes[0] != null)
|
while (unspawnNotes[0] != null &&unspawnNotes[0].strumTime - Conductor.songPosition < 1500 / SONG.speed)
|
||||||
{
|
|
||||||
if (unspawnNotes[0].strumTime - Conductor.songPosition < 1500)
|
|
||||||
{
|
{
|
||||||
var dunceNote:Note = unspawnNotes[0];
|
var dunceNote:Note = unspawnNotes[0];
|
||||||
notes.add(dunceNote);
|
notes.add(dunceNote);
|
||||||
|
@ -1614,7 +1612,6 @@ class PlayState extends MusicBeatState
|
||||||
var index:Int = unspawnNotes.indexOf(dunceNote);
|
var index:Int = unspawnNotes.indexOf(dunceNote);
|
||||||
unspawnNotes.splice(index, 1);
|
unspawnNotes.splice(index, 1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (generatedMusic)
|
if (generatedMusic)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue