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