Skip to content

Commit

Permalink
change titlestate bg color
Browse files Browse the repository at this point in the history
had to keep the black bg when the gfThingy bool is on, in case youre putting a vslice mod that changes the title screen
  • Loading branch information
charlesisfeline committed Dec 1, 2024
1 parent a63bc37 commit 553015b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/funkin/ui/title/TitleState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ class TitleState extends MusicBeatState

persistentUpdate = true;

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

Expand Down

0 comments on commit 553015b

Please sign in to comment.