Revert "healthicons now match the song's character"
This reverts commit bfb9ed5804303137247f00c377bd31694db271ab.
This commit is contained in:
parent
e063bb1ccb
commit
cea4398213
@ -90,29 +90,13 @@ class ChartingState extends MusicBeatState
|
|||||||
|
|
||||||
override function create()
|
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;
|
curSection = lastSection;
|
||||||
|
|
||||||
gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16);
|
gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16);
|
||||||
add(gridBG);
|
add(gridBG);
|
||||||
|
|
||||||
leftIcon = new HealthIcon(Song.SONG.player1);
|
leftIcon = new HealthIcon('bf');
|
||||||
rightIcon = new HealthIcon(Song.SONG.player2);
|
rightIcon = new HealthIcon('dad');
|
||||||
leftIcon.scrollFactor.set(1, 1);
|
leftIcon.scrollFactor.set(1, 1);
|
||||||
rightIcon.scrollFactor.set(1, 1);
|
rightIcon.scrollFactor.set(1, 1);
|
||||||
|
|
||||||
@ -131,6 +115,22 @@ class ChartingState extends MusicBeatState
|
|||||||
curRenderedNotes = new FlxTypedGroup<Note>();
|
curRenderedNotes = new FlxTypedGroup<Note>();
|
||||||
curRenderedSustains = new FlxTypedGroup<FlxSprite>();
|
curRenderedSustains = new FlxTypedGroup<FlxSprite>();
|
||||||
|
|
||||||
|
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.mouse.visible = true;
|
||||||
FlxG.save.bind('funkin', 'ninjamuffin99');
|
FlxG.save.bind('funkin', 'ninjamuffin99');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user