Reputation: 13610
I've set up a 2D project in Unity (4.3.4). It has a ball and ground. The ball is in the air.
To the ball I've added Box Collider 2D and Rigidbody 2D, standard values.
To the ground I've added Box Collider 2D.
When I run the game, the ball falls, but instead of stopping when hitting the ground, it continues and keep falling.
Where did I go wrong? By the tutorials this should simply work?
Upvotes: 3
Views: 2837
Reputation: 2381
Check if one of the two colliders has the checkbox isTrigger
checked. They should both be unchecked for collisions to work. First time that happened to me it took me a whole day to figure it out xD
Upvotes: 3