mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-11-25 21:55:55 +00:00
Merge pull request #453 from FunkinCrew/bugfix/judgements-below-notes
Bugfix/judgements below notes
This commit is contained in:
commit
165e20c318
|
|
@ -728,6 +728,10 @@ class PlayState extends MusicBeatSubState
|
||||||
#end
|
#end
|
||||||
|
|
||||||
initialized = true;
|
initialized = true;
|
||||||
|
|
||||||
|
// This step ensures z-indexes are applied properly,
|
||||||
|
// and it's important to call it last so all elements get affected.
|
||||||
|
refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override function draw():Void
|
public override function draw():Void
|
||||||
|
|
@ -1720,8 +1724,6 @@ class PlayState extends MusicBeatSubState
|
||||||
playerStrumline.fadeInArrows();
|
playerStrumline.fadeInArrows();
|
||||||
opponentStrumline.fadeInArrows();
|
opponentStrumline.fadeInArrows();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.refresh();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ class PopUpStuff extends FlxTypedGroup<FlxSprite>
|
||||||
comboSpr.velocity.y -= 150;
|
comboSpr.velocity.y -= 150;
|
||||||
comboSpr.velocity.x += FlxG.random.int(1, 10);
|
comboSpr.velocity.x += FlxG.random.int(1, 10);
|
||||||
|
|
||||||
add(comboSpr);
|
// add(comboSpr);
|
||||||
|
|
||||||
if (PlayState.instance.currentStageId.startsWith('school'))
|
if (PlayState.instance.currentStageId.startsWith('school'))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue