accuracy display shits
lol im pretty dumb so idk if this works
This commit is contained in:
parent
fb5f5ef5cd
commit
5e59c97909
@ -1336,8 +1336,14 @@ class PlayState extends MusicBeatState
|
|||||||
|
|
||||||
super.update(elapsed);
|
super.update(elapsed);
|
||||||
|
|
||||||
|
if (FlxG.save.data.accuracyDisplay)
|
||||||
|
{
|
||||||
scoreTxt.text = "Score:" + songScore + " | Misses:" + misses + " | Accuracy:" + truncateFloat(accuracy, 2) + "% " + (fc ? "| FC" : misses == 0 ? "| A" : accuracy <= 75 ? "| BAD" : "");
|
scoreTxt.text = "Score:" + songScore + " | Misses:" + misses + " | Accuracy:" + truncateFloat(accuracy, 2) + "% " + (fc ? "| FC" : misses == 0 ? "| A" : accuracy <= 75 ? "| BAD" : "");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
scoreTxt.text = "Score:" + songScore);
|
||||||
|
}
|
||||||
if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause)
|
if (FlxG.keys.justPressed.ENTER && startedCountdown && canPause)
|
||||||
{
|
{
|
||||||
persistentUpdate = false;
|
persistentUpdate = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user