TWEAKIN, and pico game over music

This commit is contained in:
Cameron Taylor 2021-09-22 15:33:30 -04:00
parent 52f9155ef9
commit 91f1c816b9
3 changed files with 9 additions and 1 deletions

View file

@ -709,6 +709,8 @@ class ChartingState extends MusicBeatState
if (FlxG.keys.justPressed.ENTER)
{
autosaveSong();
lastSection = curSection;
PlayState.SONG = _song;

View file

@ -50,6 +50,12 @@ class GameOverSubstate extends MusicBeatSubstate
FlxG.sound.play(Paths.sound('fnf_loss_sfx' + stageSuffix));
Conductor.changeBPM(100);
switch (PlayState.SONG.player1)
{
case 'pico':
stageSuffix = 'Pico';
}
// FlxG.camera.followLerp = 1;
// FlxG.camera.focusOn(FlxPoint.get(FlxG.width / 2, FlxG.height / 2));
FlxG.camera.scroll.set();

View file

@ -2358,7 +2358,7 @@ class PlayState extends MusicBeatState
}
else if (noteDiff > Note.HIT_WINDOW * Note.GOOD_THRESHOLD)
{
healthMulti *= 0.5;
healthMulti *= 0.2;
daRating = 'bad';
score = 100;