mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-03-24 05:39:50 -04:00
Thank you loggo
This commit is contained in:
parent
7a653707a8
commit
d8572cd323
1 changed files with 4 additions and 1 deletions
|
@ -16,6 +16,7 @@ import flixel.tweens.FlxTween;
|
|||
import flixel.ui.FlxBar;
|
||||
import flixel.util.FlxColor;
|
||||
import flixel.util.FlxTimer;
|
||||
import flixel.util.FlxStringUtil;
|
||||
import funkin.api.newgrounds.NGio;
|
||||
import funkin.audio.FunkinSound;
|
||||
import funkin.audio.VoicesGroup;
|
||||
|
@ -2060,7 +2061,9 @@ class PlayState extends MusicBeatSubState
|
|||
}
|
||||
else
|
||||
{
|
||||
scoreText.text = 'Score:' + songScore;
|
||||
// TODO: Add an option for this maybe?
|
||||
var commaSeparated:Bool = true;
|
||||
scoreText.text = 'Score: ${FlxStringUtil.formatMoney(songScore, false, commaSeparated)}';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue