Skip to content

Commit

Permalink
Update StoryMenuState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
crowplexus authored Aug 23, 2024
1 parent 1f15374 commit 89b3fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/states/StoryMenuState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ class StoryMenuState extends MusicBeatState
if(curWeek >= WeekData.weeksList.length) curWeek = 0;

scoreText = new FlxText(10, 10, 0, Language.getPhrase('week_score', 'WEEK SCORE: {1}', [lerpScore]), 36);
scoreText.setFormat("VCR OSD Mono", 32);
scoreText.setFormat(Paths.font("vcr.ttf"), 32);

txtWeekTitle = new FlxText(FlxG.width * 0.7, 10, 0, "", 32);
txtWeekTitle.setFormat("VCR OSD Mono", 32, FlxColor.WHITE, RIGHT);
txtWeekTitle.setFormat(Paths.font("vcr.ttf"), 32, FlxColor.WHITE, RIGHT);
txtWeekTitle.alpha = 0.7;

var ui_tex = Paths.getSparrowAtlas('campaign_menu_UI_assets');
Expand Down

0 comments on commit 89b3fe5

Please sign in to comment.