Recall & Review
beginner
What is root motion in Unity animations?
Root motion means the character's movement is driven by the animation itself, not by code. The animation moves the character's position and rotation in the game world.
Click to reveal answer
beginner
How do you enable root motion on an Animator component?
You check the
Apply Root Motion box on the Animator component. This tells Unity to use the animation's movement to move the character.Click to reveal answer
beginner
What happens if
Apply Root Motion is disabled?The character will not move based on the animation. Instead, you must move the character using scripts or physics.
Click to reveal answer
intermediate
Why use root motion instead of moving the character by script?
Root motion makes movement match the animation perfectly. It helps avoid sliding feet and makes animations look natural.
Click to reveal answer
intermediate
What is a common problem when using root motion and how to fix it?
Sometimes the character moves too fast or in the wrong direction. You can fix this by adjusting the animation's root transform or using
Animator.deltaPosition in scripts.Click to reveal answer
What does enabling
Apply Root Motion do in Unity?✗ Incorrect
Enabling
Apply Root Motion makes Unity move the character based on the animation's movement.If root motion is off, how do you move the character?
✗ Incorrect
Without root motion, you must move the character manually with scripts or physics.
What problem does root motion help solve?
✗ Incorrect
Root motion helps prevent foot sliding by matching movement to the animation.
Where do you find the
Apply Root Motion option?✗ Incorrect
The
Apply Root Motion checkbox is on the Animator component.What can you use to adjust root motion movement in code?
✗ Incorrect
Animator.deltaPosition gives the movement from root motion each frame and can be adjusted in scripts.Explain what root motion is and why it is useful in Unity animations.
Think about how animations can move characters without extra code.
You got /3 concepts.
Describe how to enable root motion and what happens if it is disabled.
Consider the Animator component settings.
You got /3 concepts.