0
0
Unityframework~5 mins

Rigidbody2D component in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the Rigidbody2D component used for in Unity?
Rigidbody2D is used to add physics behavior to 2D game objects, allowing them to move, fall, and collide naturally.
Click to reveal answer
beginner
How do you make a 2D object fall using Rigidbody2D?
Add a Rigidbody2D component to the object and make sure Gravity Scale is greater than zero. The object will then fall due to gravity.
Click to reveal answer
intermediate
What does the 'Body Type' property in Rigidbody2D control?
It controls how the object behaves physically: Dynamic (fully simulated), Kinematic (controlled by script), or Static (no movement).
Click to reveal answer
intermediate
How can you stop a Rigidbody2D object from rotating?
You can freeze rotation by enabling 'Freeze Rotation' in the Rigidbody2D constraints or by setting the rotation manually in code.
Click to reveal answer
intermediate
What is the difference between 'Mass' and 'Gravity Scale' in Rigidbody2D?
Mass affects how much force is needed to move the object, while Gravity Scale controls how strongly gravity affects it.
Click to reveal answer
What happens if you set the Rigidbody2D 'Body Type' to Static?
AThe object moves freely and responds to forces.
BThe object does not move or respond to physics forces.
CThe object moves only when controlled by script.
DThe object falls faster due to gravity.
Which Rigidbody2D property controls how fast an object falls?
AMass
BLinear Drag
CGravity Scale
DAngular Drag
How can you prevent a Rigidbody2D from rotating during collisions?
AFreeze Rotation in Constraints
BIncrease Mass
CSet Body Type to Static
DDisable Gravity
What does setting Rigidbody2D 'Body Type' to Kinematic allow?
AObject is controlled by script, not physics
BObject ignores collisions
CObject is static and cannot move
DObject moves only by physics forces
If you want a Rigidbody2D object to slow down over time, which property should you adjust?
AMass
BAngular Drag
CGravity Scale
DLinear Drag
Explain how Rigidbody2D helps in making 2D game objects move and interact in Unity.
Think about how objects fall, collide, and move naturally in a 2D game.
You got /4 concepts.
    Describe the differences between the Body Types in Rigidbody2D and when you might use each.
    Consider when you want physics to control movement versus manual control.
    You got /4 concepts.