Recall & Review
beginner
What is the purpose of scene loading in Unity?
Scene loading in Unity is used to bring a new scene into the game, allowing you to change levels, menus, or environments during gameplay.
Click to reveal answer
beginner
What method is used to load a scene asynchronously in Unity?
You use
SceneManager.LoadSceneAsync() to load a scene without freezing the game, allowing smooth transitions.Click to reveal answer
intermediate
How do you unload a scene in Unity?
You use
SceneManager.UnloadSceneAsync() to remove a scene from memory when it is no longer needed, freeing resources.Click to reveal answer
intermediate
What is the difference between single and additive scene loading modes?
Single mode replaces the current scene with the new one. Additive mode loads the new scene on top of the current one, allowing multiple scenes to be active together.
Click to reveal answer
beginner
Why is asynchronous scene loading preferred over synchronous loading?
Asynchronous loading prevents the game from freezing or stuttering by loading the scene in the background, improving player experience.
Click to reveal answer
Which Unity class manages scene loading and unloading?
✗ Incorrect
The SceneManager class is responsible for loading and unloading scenes in Unity.
What does
LoadSceneAsync do?✗ Incorrect
LoadSceneAsync loads scenes in the background to keep the game responsive.Which loading mode adds a scene without removing the current one?
✗ Incorrect
Additive mode loads a new scene alongside the current scene.
How do you unload a scene in Unity?
✗ Incorrect
Use
UnloadSceneAsync() to remove a scene from memory.Why should you avoid synchronous scene loading during gameplay?
✗ Incorrect
Synchronous loading blocks the game, causing freezing or stuttering.
Explain how to load and unload scenes in Unity and why asynchronous methods are important.
Think about how games switch levels without stopping.
You got /4 concepts.
Describe the difference between single and additive scene loading modes and give an example of when to use each.
Consider when you want one scene or multiple scenes active.
You got /4 concepts.