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
Hi, I'm new to Construct...
I want my player to die if he falls from more than one level.
How would I go about this?
Any help is gratefully appreciated...
Thanks, Dan.
You could make an instance variable, called falling for your platform object
Then
While falling - Add 1 to falling
On land - if(falling < number) Set falling to 0
Develop games in your browser. Powerful, performant & highly capable.
Thanks, I don't want every fall to kill him though. Just over a certain height...
Would that add, keep adding up whilst he was in the air? (Sorry, not able to test at the moment).
Thanks again.
Change the number to the max fall height and yes