Skip to content

Commit

Permalink
Update TitleState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Dec 1, 2024
1 parent 9fcfc74 commit ba25435
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/funkin/ui/title/TitleState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -198,18 +198,18 @@ class TitleState extends MusicBeatState

persistentUpdate = true;

introBg = new FunkinSprite(-1).makeSolidColor(FlxG.width + 2, FlxG.height, FlxColor.BLACK);
introBg.screenCenter();
bg.visible = true;
add(introBg);

if (!gfThingy) bg = new FunkinSprite(-1).makeSolidColor(FlxG.width + 2, FlxG.height, 0xFFC55500);
else
bg = new FunkinSprite(-1).makeSolidColor(FlxG.width + 2, FlxG.height, FlxColor.BLACK);
bg.screenCenter();
bg.visible = false;
add(bg);

introBg = new FunkinSprite(-1).makeSolidColor(FlxG.width + 2, FlxG.height, FlxColor.BLACK);
introBg.screenCenter();
bg.visible = true;
add(introBg);

logoBl = new FlxSprite(-150, -100);
logoBl.frames = Paths.getSparrowAtlas('logoBumpin');
logoBl.animation.addByPrefix('bump', 'logo bumpin', 24);
Expand Down

0 comments on commit ba25435

Please sign in to comment.