From 6beae320dfe9558026fa6c3d3c9302d9fd83f5a8 Mon Sep 17 00:00:00 2001 From: CyndaquilDAC <65635932+CyndaquilDAC@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:43:42 -0500 Subject: [PATCH 1/3] gf aint flipped anymore lol --- source/StoryMenuState.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index a7677a5..cdb1c31 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -37,7 +37,7 @@ class StoryMenuState extends MusicBeatState public static var weekUnlocked:Array = [true, true, true, true, true, true, true]; var weekCharacters:Array = [ - ['gf', 'bf', ''], + ['', 'bf', 'gf'], ['dad', 'bf', 'gf'], ['spooky', 'bf', 'gf'], ['pico', 'bf', 'gf'], @@ -47,13 +47,13 @@ class StoryMenuState extends MusicBeatState ]; var weekNames:Array = [ - "", + "How to Funk", "Daddy Dearest", "Spooky Month", "PICO", "MOMMY MUST MURDER", "RED SNOW", - "hating simulator ft. moawling" + "Hating Simulator ft. Moawling" ]; var txtWeekTitle:FlxText; From 0fb8193ecac3411874e8d6bed1825a5d65aeafa0 Mon Sep 17 00:00:00 2001 From: CyndaquilDAC <65635932+CyndaquilDAC@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:44:20 -0500 Subject: [PATCH 2/3] Revert "Revert "Revert "im dumb""" This reverts commit 475539296babcf872b52a6ed955a0971d26b4901. --- source/ChartingState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index ee1ac92..1da54ea 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -111,8 +111,8 @@ class ChartingState extends MusicBeatState gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16); add(gridBG); - leftIcon = new HealthIcon(PlayState.SONG.player1); - rightIcon = new HealthIcon(PlayState.SONG.player2); + leftIcon = new HealthIcon(Song.SONG.player1); + rightIcon = new HealthIcon(Song.SONG.player2); leftIcon.scrollFactor.set(1, 1); rightIcon.scrollFactor.set(1, 1); From 4e29cc9c480cdace60399269b07f6c55b4f1e0bf Mon Sep 17 00:00:00 2001 From: CyndaquilDAC <65635932+CyndaquilDAC@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:44:26 -0500 Subject: [PATCH 3/3] Revert "Revert "Revert "healthicons now match the song's character""" This reverts commit 0412b3035cb847548f9d8e24f2f02a0d203a29ab. --- source/ChartingState.hx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 1da54ea..6346c88 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -90,29 +90,13 @@ class ChartingState extends MusicBeatState override function create() { - if (PlayState.SONG != null) - _song = PlayState.SONG; - else - { - _song = { - song: 'Test', - notes: [], - bpm: 150, - needsVoices: true, - player1: 'bf', - player2: 'dad', - speed: 1, - validScore: false - }; - } - curSection = lastSection; gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16); add(gridBG); - leftIcon = new HealthIcon(Song.SONG.player1); - rightIcon = new HealthIcon(Song.SONG.player2); + leftIcon = new HealthIcon('bf'); + rightIcon = new HealthIcon('dad'); leftIcon.scrollFactor.set(1, 1); rightIcon.scrollFactor.set(1, 1); @@ -131,6 +115,22 @@ class ChartingState extends MusicBeatState curRenderedNotes = new FlxTypedGroup(); curRenderedSustains = new FlxTypedGroup(); + if (PlayState.SONG != null) + _song = PlayState.SONG; + else + { + _song = { + song: 'Test', + notes: [], + bpm: 150, + needsVoices: true, + player1: 'bf', + player2: 'dad', + speed: 1, + validScore: false + }; + } + FlxG.mouse.visible = true; FlxG.save.bind('funkin', 'ninjamuffin99');