mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
curse burgerballs
This commit is contained in:
parent
96de434d75
commit
eaf998adf7
1 changed files with 4 additions and 2 deletions
|
@ -827,6 +827,8 @@ class PlayState extends MusicBeatSubState
|
||||||
{
|
{
|
||||||
if (!assertChartExists()) return;
|
if (!assertChartExists()) return;
|
||||||
|
|
||||||
|
prevScrollTargets = [];
|
||||||
|
|
||||||
dispatchEvent(new ScriptEvent(SONG_RETRY));
|
dispatchEvent(new ScriptEvent(SONG_RETRY));
|
||||||
|
|
||||||
resetCamera();
|
resetCamera();
|
||||||
|
@ -3272,8 +3274,8 @@ class PlayState extends MusicBeatSubState
|
||||||
// Snap to previous event value to prevent the tween breaking when another event cancels the previous tween.
|
// Snap to previous event value to prevent the tween breaking when another event cancels the previous tween.
|
||||||
for (i in prevScrollTargets)
|
for (i in prevScrollTargets)
|
||||||
{
|
{
|
||||||
var value:Float = i[1];
|
var value:Float = i[0];
|
||||||
var strum:Strumline = Reflect.getProperty(this, i[0]);
|
var strum:Strumline = Reflect.getProperty(this, i[1]);
|
||||||
strum.scrollSpeed = value;
|
strum.scrollSpeed = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue