Skip to content

Commit

Permalink
added debug hotkeys for pico mixes alt inst
Browse files Browse the repository at this point in the history
  • Loading branch information
MidyGamy committed Jan 31, 2025
1 parent 2a362e7 commit e42f6f1
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions source/funkin/ui/mainmenu/MainMenuState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,50 @@ class MainMenuState extends MusicBeatState
});
}

if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.O)
{
// Give the user a score of 1 point on Bopeebo Pico Mix (Easy difficulty).
// This makes the song count as cleared and allow alt inst selection for BF in Freeplay.
funkin.save.Save.instance.setSongScore('bopeebo', 'easy-pico',
{
score: 1,
tallies:
{
sick: 0,
good: 0,
bad: 0,
shit: 1,
missed: 0,
combo: 0,
maxCombo: 0,
totalNotesHit: 1,
totalNotes: 10,
}
});
}

if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.I)
{
// Give the user a score of 0 point on Bopeebo Pico Mix (Easy difficulty).
// This makes the song count as uncleared and skips alt inst selection for BF in Freeplay.
funkin.save.Save.instance.setSongScore('bopeebo', 'easy-pico',
{
score: 0,
tallies:
{
sick: 0,
good: 0,
bad: 0,
shit: 0,
missed: 0,
combo: 0,
maxCombo: 0,
totalNotesHit: 0,
totalNotes: 0,
}
});
}

if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.N)
{
@:privateAccess
Expand Down

0 comments on commit e42f6f1

Please sign in to comment.