1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-04 13:54:22 +00:00

First work in progress for Blazin

This commit is contained in:
Eric Myllyoja 2022-08-31 02:24:09 -04:00
parent 31487c0a32
commit c26b3a828d
2 changed files with 7 additions and 3 deletions

View file

@ -117,7 +117,7 @@ class FreeplayState extends MusicBeatSubstate
if (StoryMenuState.weekUnlocked[7] || isDebug)
addWeek(['Ugh', 'Guns', 'Stress'], 7, ['tankman']);
addWeek(["Darnell", "lit-up", "2hot"], 8, ['darnell']);
addWeek(["Darnell", "lit-up", "2hot", "blazin"], 8, ['darnell']);
// LOAD MUSIC

View file

@ -1124,10 +1124,14 @@ class PlayState extends MusicBeatState
iconP1.toggleOldIcon();
#if debug
// PAGEUP: Skip forward one section.
// SHIFT+PAGEUP: Skip forward ten sections.
if (FlxG.keys.justPressed.PAGEUP)
changeSection(1);
changeSection(FlxG.keys.pressed.SHIFT ? 10 : 1);
// PAGEDOWN: Skip backward one section. Doesn't replace notes.
// SHIFT+PAGEDOWN: Skip backward ten sections.
if (FlxG.keys.justPressed.PAGEDOWN)
changeSection(-1);
changeSection(FlxG.keys.pressed.SHIFT ? -10 : -1);
#end
if (health > 2.0)