Skip to content
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.

Commit

Permalink
Now we can full screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Wither362 authored May 9, 2022
1 parent 6264c40 commit 8c1da66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/TitleState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ class TitleState extends MusicBeatState
FlxG.fullscreen = FlxG.save.data.fullscreen;
//trace('LOADED FULLSCREEN SETTING!!');
}
if((!initialized || initialized) && (FlxG.keys.justPressed.F && FlxG.keys.justPressed.CONTROL)) {
FlxG.save.data.fullscreen = true;
FlxG.fullscreen = FlxG.save.data.fullscreen;
}

if (FlxG.save.data.weekCompleted != null)
{
Expand Down Expand Up @@ -608,6 +612,7 @@ class TitleState extends MusicBeatState
public static var closedState:Bool = false;
override function beatHit()
{
if(Flx
super.beatHit();

if(logoBl != null)
Expand Down

0 comments on commit 8c1da66

Please sign in to comment.