0
0
Unityframework~5 mins

Canvas and render modes in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a Canvas in Unity UI?
A Canvas is a special GameObject in Unity that acts as a container for all UI elements. It controls how UI elements are rendered and displayed on the screen.
Click to reveal answer
beginner
Name the three render modes available for a Canvas in Unity.
The three render modes are: Screen Space - Overlay, Screen Space - Camera, and World Space.
Click to reveal answer
beginner
Describe Screen Space - Overlay render mode.
In Screen Space - Overlay mode, the Canvas renders UI elements directly on top of the screen. It ignores cameras and always appears in front of everything else.
Click to reveal answer
intermediate
How does Screen Space - Camera render mode work?
Screen Space - Camera mode renders UI elements using a specific camera. The UI is placed in the camera's view and can be affected by camera settings like perspective and depth.
Click to reveal answer
intermediate
What is World Space render mode and when would you use it?
World Space mode places the Canvas as a 3D object in the scene. UI elements behave like normal objects and can be interacted with in the 3D world, useful for VR or in-game screens.
Click to reveal answer
Which Canvas render mode ignores the camera and always displays UI on top?
ANone
BScreen Space - Camera
CWorld Space
DScreen Space - Overlay
In which render mode is the Canvas treated as a 3D object in the scene?
AWorld Space
BScreen Space - Overlay
CScreen Space - Camera
DNone
Which render mode requires assigning a camera to render the UI?
AScreen Space - Overlay
BWorld Space
CScreen Space - Camera
DNone
What happens if you set a Canvas to Screen Space - Camera but do not assign a camera?
AUI renders normally
BUI does not render
CUI renders in overlay mode
DCanvas converts to World Space
Which Canvas render mode is best for UI that should always stay on top of the game view?
AScreen Space - Overlay
BScreen Space - Camera
CWorld Space
DNone
Explain the differences between the three Canvas render modes in Unity.
Think about how the UI is positioned and rendered relative to the camera and scene.
You got /3 concepts.
    When would you choose World Space render mode over Screen Space modes for a Canvas?
    Consider scenarios where UI is not just an overlay but part of the game environment.
    You got /3 concepts.