Recall & Review
beginner
What is a Scene in Unity?
A Scene in Unity is like a container that holds your game objects, environments, and settings. Think of it as a level or a stage in your game.
Click to reveal answer
beginner
How do you create a new Scene in Unity?
You can create a new Scene by going to the menu: File > New Scene. This opens a fresh workspace where you can add game objects and design your level.
Click to reveal answer
intermediate
What is the purpose of the SceneManager class in Unity?SceneManager helps you load, unload, and switch between Scenes during gameplay. It controls which Scene is active and visible to the player.
Click to reveal answer
intermediate
Explain the difference between LoadScene and LoadSceneAsync methods.
LoadScene loads a Scene immediately and pauses the game until done. LoadSceneAsync loads the Scene in the background, letting the game continue running smoothly during loading.
Click to reveal answer
advanced
What is an additive Scene load in Unity?
Additive loading means loading a new Scene on top of the current one without removing it. This lets you combine multiple Scenes, like adding UI or environment parts dynamically.
Click to reveal answer
Which Unity menu option creates a new Scene?
✗ Incorrect
The correct way to create a new Scene is through File > New Scene.
What does SceneManager.LoadSceneAsync do?
✗ Incorrect
LoadSceneAsync loads the Scene in the background, allowing gameplay to continue smoothly.
What happens when you load a Scene additively?
✗ Incorrect
Additive loading adds the new Scene without removing the current one.
Which class manages Scene loading and unloading in Unity?
✗ Incorrect
SceneManager is the class responsible for Scene management.
What is the main use of Scenes in Unity?
✗ Incorrect
Scenes organize your game’s levels, environments, and objects.
Describe how you would switch from one Scene to another during gameplay in Unity.
Think about the methods in SceneManager that let you change Scenes.
You got /4 concepts.
Explain the benefits of loading Scenes additively in a game.
Consider why you might want more than one Scene loaded at once.
You got /4 concepts.