I want to replace each number in the games score with custom sprites.
example: score = 100. I want to replace the "1" and "0"s with my own custom sprites.
I'm just looking for a way to identify each number. how do i do that?
Develop games in your browser. Powerful, performant & highly capable.
Can you use a Spritefont?
construct.net/en/make-games/manuals/construct-3/plugin-reference/sprite-font
I ended up using this mid(str(CashTotal), 1, 1) in a compare two values expression.
"CashTotal" is the globalvariable. and i put together some funcitons to switch out the sprite frames and i works great.