I have two objects with colliders and one with a rigid body. Here are their inspector settings.
This first is the cube, which has the rigid body and is moving during the collision.
Second here is the plane that the cube is colliding with
I am using a simple script just to print a debug if there is any collision. This script is inside the cube object.
void onCollisionEnter(Collision collision){
Debug.Log (collision.gameObject.name);
}
I have searched through the documentation for hours, and I appear to be doing everything correct, but there is no collision.
Any help is appreciated. Thanks so much.