#pragma strict
var MaxFallDistance = -110;
function Update ()
{
if(transform.position.y <= MaxFallDistance);
{
Debug.Log ("We good fam");
}
}
no matter where i am the if statement is always true even at 0, 0, 0. please help!!!
↧