0
0
Unityframework~5 mins

Trigger vs collision detection in Unity - Quick Revision & Key Differences

Choose your learning style9 modes available
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?
ATrigger and Collision are the same in Unity.
BTrigger detects overlap without physical response; Collision causes physical response.
CTrigger causes physical response; Collision only detects overlap.
DTrigger disables physics; Collision disables rendering.
Which Unity method is called when two colliders physically collide?
AOnCollisionEnter
BOnTriggerEnter
COnTriggerExit
DOnCollisionStay
To use a collider as a Trigger, what must you do in Unity?
AAdd a Rigidbody component
BSet the collider to static
CDisable the collider
DCheck the 'Is Trigger' box on the collider
Which component is required on at least one object for collision or trigger events to work?
ARigidbody
BCamera
CAnimator
DAudioSource
What happens if two colliders both have 'Is Trigger' enabled and overlap?
AThey ignore each other completely
BThey cause a physical collision
CThey generate trigger events without physical collision
DThey cause the game to crash
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.