0
0
Unityframework~5 mins

Rigidbody 3D component in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of the Rigidbody 3D component in Unity?
The Rigidbody 3D component makes a GameObject respond to physics forces like gravity, collisions, and other physical interactions.
Click to reveal answer
beginner
How do you make a Rigidbody 3D object stop moving in Unity?
You can set the Rigidbody's velocity to zero or use Rigidbody's isKinematic property to stop physics simulation on the object.
Click to reveal answer
beginner
What does the useGravity property do in a Rigidbody 3D component?
The useGravity property controls whether the Rigidbody is affected by gravity. If true, gravity pulls the object down; if false, it floats.
Click to reveal answer
intermediate
Explain the difference between isKinematic set to true and false on a Rigidbody 3D.
isKinematic = true means the Rigidbody is controlled by script and ignores physics forces. isKinematic = false means physics forces like collisions and gravity affect the Rigidbody.
Click to reveal answer
beginner
How can you apply a force to a Rigidbody 3D to make it move?
Use the Rigidbody's AddForce(Vector3 force) method to push or pull the object in a direction.
Click to reveal answer
What happens if you disable useGravity on a Rigidbody 3D?
AThe object will freeze in place.
BThe object will not be pulled down by gravity.
CThe object becomes invisible.
DThe object will move faster.
Which property makes a Rigidbody ignore physics forces and be controlled only by scripts?
AuseGravity
Bmass
CisKinematic
Ddrag
How do you stop a Rigidbody 3D from moving immediately?
ASet velocity to zero
BIncrease mass
CDisable gravity
DChange color
What method do you use to push a Rigidbody 3D in a direction?
ATranslate
BSetActive
CRotate
DAddForce
If isKinematic is false, what affects the Rigidbody?
APhysics forces like gravity and collisions
BOnly script commands
CNothing affects it
DIt becomes invisible
Describe how the Rigidbody 3D component controls an object's movement in Unity.
Think about how physics and scripts affect the object.
You got /5 concepts.
    Explain the difference between using isKinematic true and false on a Rigidbody 3D.
    Consider when the object moves by physics or by your code.
    You got /5 concepts.