Recall & Review
beginner
What is a Trigger in Unity physics?
A Trigger is a collider set to detect when other objects enter, stay, or exit its area without causing a physical collision response. It allows events without blocking movement.
Click to reveal answer
beginner
What happens during a Collision in Unity?
A Collision occurs when two colliders physically touch and react, causing physics responses like bouncing or stopping movement.
Click to reveal answer
beginner
How do you make a collider act as a Trigger in Unity?
You check the 'Is Trigger' box on the collider component in the Unity Editor. This disables physical collision but enables trigger events.
Click to reveal answer
intermediate
Which Unity event method is called when an object enters a Trigger?
The method
OnTriggerEnter(Collider other) is called when another collider enters a trigger collider.Click to reveal answer
intermediate
Can a Rigidbody be required for collision detection or trigger detection in Unity?
Yes, at least one of the objects involved must have a Rigidbody component for collision or trigger events to be detected.
Click to reveal answer
What is the main difference between a Trigger and a Collision in Unity?
✗ Incorrect
Triggers detect when objects overlap without blocking movement, while Collisions cause physical reactions like bouncing or stopping.
Which Unity method is called when two colliders physically collide?
✗ Incorrect
OnCollisionEnter is called when two colliders collide physically.To use a collider as a Trigger, what must you do in Unity?
✗ Incorrect
Checking 'Is Trigger' makes the collider detect overlaps without physical collisions.
Which component is required on at least one object for collision or trigger events to work?
✗ Incorrect
A Rigidbody component is needed on at least one object to detect collisions or triggers.
What happens if two colliders both have 'Is Trigger' enabled and overlap?
✗ Incorrect
Two trigger colliders overlapping generate trigger events but no physical collision.
Explain the difference between Trigger and Collision detection in Unity and when you would use each.
Think about whether you want objects to physically react or just detect presence.
You got /4 concepts.
Describe the role of Rigidbody in collision and trigger detection in Unity.
Consider what makes Unity's physics engine recognize moving objects.
You got /3 concepts.