mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
TWEAKIN, and pico game over music
This commit is contained in:
parent
52f9155ef9
commit
91f1c816b9
3 changed files with 9 additions and 1 deletions
|
@ -709,6 +709,8 @@ class ChartingState extends MusicBeatState
|
|||
|
||||
if (FlxG.keys.justPressed.ENTER)
|
||||
{
|
||||
autosaveSong();
|
||||
|
||||
lastSection = curSection;
|
||||
|
||||
PlayState.SONG = _song;
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue