0
0
Unityframework~5 mins

Scene loading and unloading in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
ARenderer
BGameObject
CSceneManager
DTransform
What does LoadSceneAsync do?
AImmediately replaces the current scene
BPauses the game
CUnloads the current scene
DLoads a scene without freezing the game
Which loading mode adds a scene without removing the current one?
AAdditive
BExclusive
CSingle
DParallel
How do you unload a scene in Unity?
ASceneManager.LoadScene()
BSceneManager.UnloadSceneAsync()
CDestroy()
DSceneManager.ReloadScene()
Why should you avoid synchronous scene loading during gameplay?
AIt causes the game to freeze
BIt speeds up loading
CIt uses less memory
DIt improves graphics
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.