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?
✗ Incorrect
Static bodies do not move or respond to physics forces but can collide with other objects.
Which Rigidbody2D property controls how fast an object falls?
✗ Incorrect
Gravity Scale changes how strongly gravity affects the object, controlling its falling speed.
How can you prevent a Rigidbody2D from rotating during collisions?
✗ Incorrect
Freezing rotation stops the object from rotating even when forces or collisions occur.
What does setting Rigidbody2D 'Body Type' to Kinematic allow?
✗ Incorrect
Kinematic bodies are moved by scripts and do not respond to physics forces like gravity.
If you want a Rigidbody2D object to slow down over time, which property should you adjust?
✗ Incorrect
Linear Drag slows down the object's movement over time by simulating air resistance.
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.