Hi Community,
I have a global variable as SCORE = 0
I've set a sprite-text to display the score...
How do I set it to display 00 instead of 0
Sorry if this is ridiculously easy question.
Thanks,
Roberto
Develop games in your browser. Powerful, performant & highly capable.
zeropad(SCORE,2)
(It's a System expression).
construct.net/make-games/manuals/construct-3/system-reference/system-expressions
Thank you blackhornet