Recall & Review
beginner
What is a Mesh in Unity?
A Mesh in Unity is a collection of vertices, edges, and faces that define the shape of a 3D object. It is like the skeleton or wireframe of the object.
Click to reveal answer
beginner
What does a Mesh Renderer component do?
The Mesh Renderer takes the Mesh data and draws it on the screen using materials and lighting. It makes the 3D shape visible in the game.
Click to reveal answer
beginner
How do Mesh and Mesh Renderer work together in Unity?
The Mesh holds the shape data, and the Mesh Renderer displays that shape with colors and textures. Without Mesh Renderer, the Mesh is invisible.
Click to reveal answer
intermediate
Which Unity component do you add to a GameObject to show a 3D model?
You add both a Mesh Filter (which holds the Mesh) and a Mesh Renderer (which draws it). The Mesh Filter links the shape, and the Mesh Renderer shows it.
Click to reveal answer
intermediate
Can you change the Mesh of a Mesh Filter at runtime?
Yes, you can assign a new Mesh to the Mesh Filter component in code to change the shape dynamically during the game.
Click to reveal answer
What does the Mesh Renderer component do in Unity?
✗ Incorrect
The Mesh Renderer draws the Mesh on the screen by applying materials and lighting.
Which component holds the shape data of a 3D object in Unity?
✗ Incorrect
The Mesh Filter component holds the Mesh data, which defines the shape.
What happens if a GameObject has a Mesh but no Mesh Renderer?
✗ Incorrect
Without a Mesh Renderer, the Mesh is not drawn and remains invisible.
How can you change the shape of a 3D object during gameplay?
✗ Incorrect
Changing the Mesh in the Mesh Filter changes the object's shape dynamically.
Which two components are essential to display a 3D model in Unity?
✗ Incorrect
Mesh Filter holds the shape, and Mesh Renderer draws it, both are needed to display a 3D model.
Explain how Mesh and Mesh Renderer components work together to show a 3D object in Unity.
Think about the roles of shape and display.
You got /4 concepts.
Describe the steps to change a 3D object's shape during gameplay using Mesh and Mesh Renderer.
Focus on which component holds the shape.
You got /4 concepts.