Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
I'm working on a game that needs to display points or score in a Currency format, but I want to use Sprite Fonts.
So, 10000 should be $10,000 without the decimals.
Any thoughts on this?
Thanx!
Develop games in your browser. Powerful, performant & highly capable.
"$" & RegexReplace(str(10000),"\B(?=(\d{3})+(?!\d))","g", ",")
just replace the 10000 with your score variable.
—
Thanx !!!