0
0
Unityframework~5 mins

3D colliders in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AAnimator
BAudioSource
CRigidbody
DCamera
What type of collider should you use for a simple spherical object?
ASphere Collider
BBox Collider
CCapsule Collider
DMesh Collider
What happens when you set a collider's 'Is Trigger' property to true?
AIt blocks objects physically.
BIt disables the collider.
CIt makes the object invisible.
DIt detects overlaps but does not block movement.
Which collider type is best for complex shapes but can reduce performance?
ABox Collider
BMesh Collider
CCapsule Collider
DSphere Collider
Can two GameObjects without Rigidbody components detect collisions between their colliders?
AOnly if one has a Rigidbody.
BNo, never.
CYes, always.
DOnly if both have Mesh 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.