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:
parent
31487c0a32
commit
c26b3a828d
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue