Recall & Review
beginner
What is a 3D collider in Unity?
A 3D collider is a component that defines the shape of an object for physical collisions and interactions in 3D space.
Click to reveal answer
beginner
Name three common types of 3D colliders in Unity.
Box Collider, Sphere Collider, and Capsule Collider are three common 3D colliders used to define simple shapes for collision detection.
Click to reveal answer
intermediate
How does a Mesh Collider differ from primitive colliders like Box or Sphere Collider?
A Mesh Collider uses the actual mesh shape of the object for collisions, allowing complex shapes, but it is more performance-heavy than primitive colliders.
Click to reveal answer
intermediate
What must be true for a GameObject with a 3D collider to detect collisions?
The GameObject must have a Rigidbody component or the other colliding object must have one, and both must have enabled colliders.
Click to reveal answer
beginner
What is the difference between a collider set as 'Is Trigger' and a normal collider?
A collider set as 'Is Trigger' does not physically block objects but detects when other colliders enter or exit its space, useful for events and triggers.
Click to reveal answer
Which component is required on a GameObject to make a 3D collider detect physical collisions?
✗ Incorrect
A Rigidbody component is needed for the physics engine to detect and respond to collisions involving the GameObject.
What type of collider should you use for a simple spherical object?
✗ Incorrect
Sphere Collider fits perfectly for spherical shapes and is efficient for collision detection.
What happens when you set a collider's 'Is Trigger' property to true?
✗ Incorrect
'Is Trigger' allows the collider to detect when other colliders enter or exit without physically blocking them.
Which collider type is best for complex shapes but can reduce performance?
✗ Incorrect
Mesh Colliders use the actual mesh shape, which is more detailed but heavier on performance.
Can two GameObjects without Rigidbody components detect collisions between their colliders?
✗ Incorrect
At least one GameObject must have a Rigidbody for collision detection to work between colliders.
Explain how 3D colliders work in Unity and why Rigidbody components are important for collision detection.
Think about how Unity knows when objects bump into each other.
You got /3 concepts.
Describe the difference between a collider set as 'Is Trigger' and a normal collider in Unity.
Triggers detect presence without stopping objects.
You got /3 concepts.