Just a few minor thingsthis AM ... why doesn't this "pr

var objectB : Transform ;

function Update () 
{
    // if the box is on the ground, that gets printed to the screen
    if (objectB.position.y < -1.8)
	{
		print("The box is now sitting on the ground.");
	}
    
    // if the box is picked up, that gets printed to the screen
    if (objectB.position.y > -1.45)
	{
		print("The box is now up!");
	}
}

when the level starts this is fine, it says the The box is now sitting on the ground. When the box gets picked up it says The box is now up!

But when the box gets put back down, it still says The box is now up! How do I make it when the box is set back down to say The box is now sitting on the ground. ??

This will help me finish the whole parent/child collision problem I’m having (I think).

Thanks, David

You don’t have Collapse turned on in the console by the chance?

Thanks Aras, yes I did. Off now and working perfectly. Since I didn’t know exactly what that is I’d probably have never found it on my own. What exactly does that do and why would it affect the print status line?

What that does is not let the console display two of the same error. It can be helpful for when you have errors printing every update.

Ah, that’s a neat feature. Thanks!