mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
healthBar divisions, plus OUTLINE_FAST instead of OUTLINE for scoreText.
This commit is contained in:
parent
c92c143304
commit
713074ff86
1 changed files with 5 additions and 1 deletions
|
@ -1602,11 +1602,15 @@ class PlayState extends MusicBeatSubState
|
|||
healthBar.scrollFactor.set();
|
||||
healthBar.createFilledBar(Constants.COLOR_HEALTH_BAR_RED, Constants.COLOR_HEALTH_BAR_GREEN);
|
||||
healthBar.zIndex = 801;
|
||||
// One division for each pixel of the bar's width ensures maximum bar smoothness.
|
||||
// This is better looking, and syncs with the lerped icon movement better.
|
||||
// This can be slightly more heavy on the CPU, though, so if lower end device performance options are added, maybe make them affect this?
|
||||
healthBar.numDivisions = Std.int(healthBarBG.width - 8);
|
||||
add(healthBar);
|
||||
|
||||
// The score text below the health bar.
|
||||
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.setFormat(Paths.font('vcr.ttf'), 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE_FAST, FlxColor.BLACK);
|
||||
scoreText.scrollFactor.set();
|
||||
scoreText.zIndex = 802;
|
||||
add(scoreText);
|
||||
|
|
Loading…
Reference in a new issue