Recall & Review
beginner
What is a prefab in Unity?
A prefab is a reusable game object template that you can create once and use many times in your scenes. It helps keep things organized and consistent.
Click to reveal answer
beginner
How do prefabs help in game development?
Prefabs let you create objects once and reuse them multiple times, saving time and making it easy to update all copies by changing the original prefab.Click to reveal answer
intermediate
What happens when you modify a prefab instance in a scene?
You can override properties on the instance without changing the original prefab. But if you update the prefab asset, all instances update unless overridden.
Click to reveal answer
beginner
How do you create a prefab in Unity?
Drag a game object from the scene hierarchy into the Project window. This creates a prefab asset you can reuse.
Click to reveal answer
intermediate
Can prefabs contain other prefabs?
Yes, prefabs can be nested. This means a prefab can include other prefabs inside it, making complex reusable objects.
Click to reveal answer
What is the main benefit of using prefabs in Unity?
✗ Incorrect
Prefabs let you reuse objects and update all instances by changing the original prefab.
How do you create a prefab from a game object in Unity?
✗ Incorrect
Dragging a game object from the scene hierarchy to the Project window creates a prefab asset.
What happens if you change a prefab asset after creating instances?
✗ Incorrect
Changing the prefab asset updates all instances unless they have overridden properties.
Can you override properties on a prefab instance without changing the prefab asset?
✗ Incorrect
Prefab instances can have overridden properties that differ from the prefab asset.
What is a nested prefab?
✗ Incorrect
Nested prefabs are prefabs that contain other prefabs inside them.
Explain what a prefab is and why it is useful in Unity game development.
Think about making copies of a toy that you can change all at once.
You got /3 concepts.
Describe the process to create and use a prefab in a Unity project.
Imagine saving a model to reuse it many times.
You got /3 concepts.