0
0
Unityframework~5 mins

Scene creation and management in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AFile > New Scene
BEdit > New Scene
CWindow > New Scene
DAssets > New Scene
What does SceneManager.LoadSceneAsync do?
AUnloads the current Scene
BLoads a Scene immediately and blocks gameplay
CLoads a Scene in the background without freezing gameplay
DSaves the current Scene
What happens when you load a Scene additively?
AThe current Scene is replaced
BThe game pauses
CThe Scene unloads automatically
DThe new Scene loads on top of the current Scene
Which class manages Scene loading and unloading in Unity?
ASceneManager
BGameObject
CTransform
DRenderer
What is the main use of Scenes in Unity?
ATo store textures
BTo organize game levels and environments
CTo write scripts
DTo create animations
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.