Skip to content

Commit

Permalink
quick bug fixes lmao
Browse files Browse the repository at this point in the history
gotta fix weekend1 songs tho :(
  • Loading branch information
Hackx2 committed Aug 24, 2024
1 parent 9366cc4 commit dfb887d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
Binary file added assets/shared/images/icons/icon-bf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/icons/icon-dad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/icons/icon-face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/shared/images/icons/icon-gf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/shared/images/palette.png
Binary file not shown.
13 changes: 3 additions & 10 deletions source/funkin/game/options/BaseMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ class BaseMenu extends MusicBeatSubstate
private var bg:FlxSprite;
private var grid:FlxSprite;

override function create()
{
super.create();
public function new()
{
super();

bg = new FlxSprite().loadGraphic(Paths.image('menuDesat'));
bg.color = EngineData.coreGame.menuColor;
Expand All @@ -22,12 +22,5 @@ class BaseMenu extends MusicBeatSubstate
grid.alpha = 0;
FlxTween.tween(grid, {alpha: 1}, 0.5, {ease: FlxEase.quadOut});
add(grid);

var bg:FlxSprite = new FlxSprite(720).makeGraphic(FlxG.width - 720, FlxG.height, FlxColor.BLACK);
bg.alpha = 0.25;
add(bg);
var bg:FlxSprite = new FlxSprite(750, 160).makeGraphic(FlxG.width - 780, 540, FlxColor.BLACK);
bg.alpha = 0.25;
add(bg);
}
}

0 comments on commit dfb887d

Please sign in to comment.