Revert Score Text Position

(Request by EliteMasterEric)
This commit is contained in:
JVN-Pixels 2024-07-10 16:40:42 -07:00 committed by GitHub
parent 78f095a864
commit 9006cd4edc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1566,8 +1566,8 @@ class PlayState extends MusicBeatSubState
add(healthBar);
// The score text below the health bar.
scoreText = new FlxText(healthBarBG.x + healthBarBG.width - 350, healthBarBG.y + 40, 0, '', 24);
scoreText.setFormat(Paths.font('vcr.ttf'), 24, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
scoreText = new FlxText(healthBarBG.x + healthBarBG.width - 190, healthBarBG.y + 30, 0, '', 20);
scoreText.setFormat(Paths.font('vcr.ttf'), 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
scoreText.scrollFactor.set();
scoreText.zIndex = 802;
add(scoreText);