Hi, again
I’m trying make it so that when a character falls off the edge and collides with my fallour floor - He’s classed as dead, and lets say in a four player game, when the 3 other opponents are dead, the 1 alive player (dead=false) wins.
What I’m asking for is there a way to check if 3 of my 4 charaters are dead, and if so, to open up a winscreen or gui depending on winner “Player 1 wins”.
private var dead = false;
function OnTriggerEnter (other : Collider)
{
dead = true;
}
Thank you so, so much