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
exemple please
won make show variable on text
ex: bar=100 and colide enemig decresed bar
To make the variable's value show up in a text object:
Set text: "Bla bla" + str(global('VariableName'))
make sure you've added a Text Object to the layout
on the event sheet, use the Set Text action of the Text Object
for global variables:
Set Text:
Global('VariableName')
or for private variables:
MySprite('VariableName')
Develop games in your browser. Powerful, performant & highly capable.
nice ty