Unreal Engine Level Design 2 — Questions and Answers
Question 1: Which Unreal Engine tool allows you to paint foliage instances directly onto level geometry?
- Landscape Tool
- Foliage Tool (Correct answer)
- Brush Builder
- Geometry Mode
Correct answer: Foliage Tool
The Foliage Tool lets designers paint instanced static meshes like grass, trees, and rocks directly onto surfaces in the viewport.
Question 2: What is the purpose of a 'Blocking Volume' in Unreal Engine level design?
- To block light from entering an area
- To create invisible collision boundaries for players (Correct answer)
- To prevent Blueprint execution
- To stop AI from navigating
Correct answer: To create invisible collision boundaries for players
A Blocking Volume is an invisible actor that provides collision to stop characters from passing through areas without adding visible geometry.
Question 3: In Unreal Engine, what does 'World Partition' replace in large open-world level design?
- The Foliage system
- World Composition (Correct answer)
- Level Streaming Volumes
- Sublevels
Correct answer: World Composition
World Partition is UE5's system that replaces World Composition, automatically streaming level cells based on player proximity.
Question 4: Which grid snap setting should you enable to ensure BSP brushes and geometry align properly with no gaps?
- Rotation snap
- Surface snap
- Translation grid snap (Correct answer)
- Vertex snap
Correct answer: Translation grid snap
Translation grid snap ensures geometry is placed on power-of-two aligned coordinates, preventing cracks and misalignment between brushes.
Question 5: What is a 'Level Sequence' primarily used for in Unreal Engine?
- Ordering level loading priorities
- Authoring cinematic and in-engine cutscenes (Correct answer)
- Setting spawn order for actors
- Managing sublevel visibility
Correct answer: Authoring cinematic and in-engine cutscenes
A Level Sequence is a Sequencer asset used to create cinematic content by animating actors, cameras, and properties over a timeline.
Question 6: When designing a level in Unreal Engine, what does 'Additive' brush geometry mode do?
- Subtracts space from a solid world
- Adds solid geometry to an empty world (Correct answer)
- Adds a light source to the scene
- Merges two static meshes
Correct answer: Adds solid geometry to an empty world
Additive BSP brushes add solid volume to the world, which starts as empty space, effectively building up geometry.
Question 7: Which Unreal Engine feature automatically generates navigation mesh data so AI characters can pathfind through your level?
- NavMesh Bounds Volume (Correct answer)
- Physics Volume
- Post Process Volume
- Trigger Volume
Correct answer: NavMesh Bounds Volume
Placing a NavMesh Bounds Volume in the level tells Unreal Engine to generate a Navigation Mesh within that volume for AI pathfinding.
Which Unreal Engine tool allows you to paint foliage instances directly onto level geometry?