Collision
If we want a Game Object to react to something bumping into it:
- that object needs to have a Rigidbody
- the object bumping, or being bumped, needs to have an 'OnCollisionEnter' function
// called in 1 frame when collision first is detected
//
private void OnCollisionEnter(Collision collision)
{
}