Hello all!
I am a newcomer in these forums. I like Construct Classic due to its flexibility and the whole bunch of options it has.
In just 1 hour I managed to create a simple Arcanoid style game and I have just one problem... I don't know how to display the score. I have created a global value that is getting higher as the ball destroys the blocks but I don't know how to display it. Tried with the Text object but failed. Can you help me?
Thanks in advance! :-)
Develop games in your browser. Powerful, performant & highly capable.
Add a Text object and do:
( this assumes the Text object is called Score, and Global variable is called PlayerScore)
-> SCORE: Set text to "SCORE: " & global('PlayerScore')