Recall & Review
beginner
What is a Physics Material in Unity?
A Physics Material in Unity defines how a surface interacts physically, controlling properties like friction and bounce when objects collide.
Click to reveal answer
beginner
What does the 'Friction' property control in a Physics Material?
Friction controls how much an object resists sliding against another surface. Higher friction means more resistance and less sliding.
Click to reveal answer
beginner
What effect does the 'Bounciness' property have in a Physics Material?
Bounciness controls how much an object bounces back after hitting another surface. A value of 0 means no bounce, 1 means full bounce.
Click to reveal answer
intermediate
How does 'Friction Combine' affect the interaction between two Physics Materials?
Friction Combine determines how friction values from two colliding materials combine. Options include Average, Minimum, Maximum, and Multiply.
Click to reveal answer
intermediate
How can you create a bouncy ball effect using Physics Materials in Unity?
Create a Physics Material with high Bounciness (close to 1) and set Bounce Combine to Maximum or Average, then assign it to the ball's collider.
Click to reveal answer
What does setting the Friction value to 0 in a Physics Material do?
✗ Incorrect
A friction value of 0 means no resistance to sliding, so the surface is completely slippery.
If you want an object to bounce less, which property should you adjust?
✗ Incorrect
Lowering the Bounciness value reduces how much the object bounces after collision.
Which Friction Combine mode results in the highest friction when two materials collide?
✗ Incorrect
Maximum takes the higher friction value of the two materials, resulting in the highest friction.
Where do you assign a Physics Material in Unity to affect an object?
✗ Incorrect
Physics Materials are assigned to Collider components to affect physical interactions.
What happens if Bounce Combine is set to 'Multiply' and both materials have bounciness 0.5?
✗ Incorrect
Multiply mode multiplies the two bounciness values: 0.5 * 0.5 = 0.25.
Explain how friction and bounce properties in Unity Physics Materials affect object collisions.
Think about how a ball rolls or bounces on different surfaces.
You got /3 concepts.
Describe how you would create a Physics Material for a surface that is very slippery but does not bounce.
Imagine ice or a slick floor.
You got /3 concepts.