Chapter 22 — Quiz

Eighteen questions covering environmental storytelling, composition, item descriptions, worldbuilding consistency, and implementation. Answer key at the bottom.


Multiple Choice

1. The "found narrative" is best defined as: - A) A story element randomly generated each playthrough - B) A narrative the player assembles themselves by reading environmental evidence - C) Any note or audio log discovered during gameplay - D) A cutscene that plays when the player enters a specific trigger volume

2. Harvey Smith and Matthias Worch's environmental storytelling framework defines the three primary components as: - A) Characters, dialogue, plot - B) Music, lighting, camera - C) Spatial composition, props and detail, architectural state - D) Audio logs, notes, graffiti

3. The "iceberg principle" in environmental storytelling recommends: - A) Placing stories in cold, visually stark environments - B) Showing approximately 10% of the story and implying 90% - C) Making every environmental scene hidden and hard to find - D) Using water and reflection as narrative symbols

4. The Dark Souls approach to lore delivery is characterized by: - A) Frequent cutscenes explaining the backstory - B) Item descriptions, cryptic NPC dialogue, and environmental arrangement, with almost nothing explicit - C) Narrator voiceover between levels - D) Tutorial pop-ups explaining each piece of lore as encountered

5. The Witcher 3's approach differs from the Dark Souls approach by: - A) Using only audio logs and no text - B) Serving lore accessibly through codex entries, NPC dialogue, and readable books - C) Having no environmental storytelling at all - D) Letting players vote on the canonical lore

6. According to the chapter, a good item description for lore purposes should: - A) Be at least 500 words to fully explore the world - B) Name a specific thing, imply a larger context, and suggest emotional tone - C) Explain exactly what the item does mechanically and nothing else - D) Avoid any named characters or places

7. BioShock's audio logs are considered a successful example of the technique because they are: - A) Generic narrator voiceovers explaining the plot - B) Characterized, short, placed purposefully, optional, and the unique carrier of their information - C) Required reading to progress in the game - D) Only available in the DLC

8. The most common failure mode of audio logs in lesser games is: - A) Having too many different voices for one level - B) Being used as a lazy exposition dump that duplicates or replaces environmental composition - C) Being too short to convey information - D) Requiring expensive voice acting

9. "Negative space" in environmental storytelling refers to: - A) Moments when the player fails the mission - B) Stories told through what is absent or missing, not through what is present - C) The space behind the camera - D) Areas with no collision detection

10. Juxtaposition as a narrative tool relies on the principle that: - A) Players assume that proximity implies relationship; two objects near each other generate meaning together that neither has alone - B) The first object in a room is always the most important - C) Narrative elements should be far apart to avoid overwhelming the player - D) Players read left to right, like English text

11. The "diegetic discipline" described in the chapter means: - A) Ensuring every game element has a reason to exist within the story-world, not just for the player's benefit - B) Only using dialogue, never text on screen - C) Having a narrator explain every scene - D) Using realistic rather than stylized art

12. A world bible is most useful because it: - A) Is required by most publishers - B) Provides a canonical reference that prevents inconsistency across levels, props, and narrative elements - C) Allows the game to be rated for religious content - D) Acts as the legal contract between designers and writers

13. "Readable composition" in environmental storytelling means: - A) The text in notes uses a readable font - B) Each scene has a clear visual focus that can be understood at a glance, supported by silhouette, contrast, lighting, and framing - C) The game includes subtitles - D) All text is written at a 6th grade reading level

14. Which of the following is NOT a placement principle from the chapter? - A) Place on the path of natural attention - B) Place at pacing transitions - C) Place with emotional room to breathe - D) Place during combat encounters for maximum tension

15. In the chapter's InteractableNote.gd implementation, the Area2D's role is to: - A) Store the note's text - B) Detect when the player enters and exits proximity via body signals - C) Render the popup UI - D) Pause the game when a note is being read

16. Environmental storytelling respects player pace because: - A) The same scene supports both the glance (2 seconds) and the study (2 minutes) without forcing either - B) It requires the player to stop moving - C) It plays at a speed the player cannot change - D) It only appears in cutscenes where pacing is fixed


Short Answer

17. In 2-3 sentences, explain the iceberg principle and give one concrete example of how you might apply it in a single-room scene.

18. Describe the key differences between the Dark Souls and The Witcher 3 approaches to lore density. Which would you choose for a game aimed at a broad, casual audience, and why?


Answer Key

1. B — The found narrative is assembled by the player from environmental evidence. The designer places the evidence; the player constructs the story. This co-construction is what makes it emotionally powerful.

2. C — Smith and Worch's 2010 GDC talk defines spatial composition (where things are in 3D space), props and detail (the specific objects present), and architectural state (what the space was built for and what happened to it) as the three primary components.

3. B — Show approximately 10% of the story and imply 90%. The player's imagination fills in the missing mass. Over-showing kills the scene.

4. B — FromSoftware's approach is almost nothing explicit. Item descriptions, cryptic NPC dialogue, and environmental arrangement carry the lore. Most players never learn the whole story, and that is fine.

5. B — The Witcher 3 serves lore through codex entries, readable books, NPC explanations, and journal notes. The world's richness is accessible rather than hidden. The tradeoff is less intimacy and more inclusivity.

6. B — A good item description names a specific thing (person, place, event), implies a larger context (gestures at something the player must piece together), and suggests an emotional tone. Three sentences, a world of implication.

7. B — BioShock's audio logs are characterized by specific people with specific voices (not neutral narration), kept short (30-120 seconds), placed to match their content, optional (skippable without losing main plot), and unique (the game does not duplicate their information elsewhere).

8. B — The lazy audio log is the single most overused environmental storytelling technique. It is a dump truck for exposition and usually duplicates or replaces environmental composition rather than complementing it.

9. B — Negative space tells stories through absence. The empty village, the abandoned dining table, the stripped barracks. The player's mind fills the absence and generates meaning from the missingness.

10. A — Players assume proximity implies relationship. Placing two objects near each other creates a third, implied story about their connection. This is one of the most efficient tools in the discipline.

11. A — The diegetic discipline asks, for every placed element, "why is this here, within the fiction?" If the only answer is "for the player," the element breaks the world. A cache of ten potions is non-diegetic; an adventurer's abandoned camp with ten potions and a journal is diegetic.

12. B — The world bible is the canonical reference for what exists in the world, what happened, and what is consistent. Without it, different team members (or even one solo developer over time) drift into contradiction. With it, every level review can ask "does this violate the bible?"

13. B — Readable composition means the scene's visual focus is clear at a glance. Silhouettes, contrast, lighting, and architectural framing all direct the player's eye. If you cannot identify the scene's focus in three seconds, recompose.

14. D — Placing narrative moments during combat encounters kills the storytelling. Players cannot absorb environmental detail while adrenaline is spiking. Narrative scenes need silence around them, pacing transitions, and emotional room to breathe.

15. B — The Area2D's role is proximity detection via body_entered and body_exited signals. It caches a reference on the player as can_interact_with. When the player presses interact, the reference's interact() method fires the note_read signal, which the UI listens for.

16. A — The same scene supports both the glance (casual players get the surface) and the study (engaged players reward their attention with specifics). Environmental storytelling is the rare narrative medium that handles wildly different player paces without forcing anyone into the wrong speed.

17. The iceberg principle states that you should show about 10% of the story visibly and imply 90%. The player's imagination fills in the missing mass, and every player imagines slightly differently, which is the source of the emotional power. Example: in a single-room scene, you might show a body, a broken door, a key in the victim's hand, and a small locket — four visible elements — and imply dozens of untold details (who the victim was, who they loved, what killed them, whether the killer is still nearby, whether the locket's subject survived). The player assembles their own version of the full story from the evidence; the designer does not write it out.

18. Dark Souls hides lore almost entirely — item descriptions, cryptic NPC lines, environmental arrangement — so that dedicated players assemble the world from fragments and casual players can ignore lore without being blocked. The Witcher 3 serves lore accessibly through codex entries, readable books, and explanatory NPC dialogue, so that any player can understand the world without digging. For a broad casual audience, the Witcher approach is better: it welcomes newcomers, avoids excluding players who don't care about deep lore, and still lets engaged players go deeper if they want. The Souls approach requires a dedicated audience that will do the community work of spreading lore theories, which is a large commercial bet most games should not make. A blended approach — explicit main-plot lore, implicit worldbuilding — is the most broadly viable.


Scoring Guide

  • 16-18 correct: You understand environmental storytelling deeply; you are ready to compose spaces that tell stories
  • 13-15 correct: Strong grasp; revisit the sections covering your missed questions
  • 10-12 correct: Intermediate; replay Gone Home or Dark Souls with this chapter's concepts in mind, specifically watching for iceberg composition and juxtaposition
  • Below 10: Re-read the chapter; focus on the Smith-Worch framework, iceberg principle, and placement discipline sections