Summary

A design pattern in which events during gameplay reduce the game state in size — discarding information that is no longer relevant and marking a natural break point. Closure Points are the moments where one phase of play ends and another begins (Björk & Holopainen 2004, see source-patterns-in-game-design).

Closure Points are the structural mechanism behind the peaks and valleys of the interest curve: they punctuate sustained engagement with moments of release, reward, and re-orientation.

Implementation

Common forms:

  • Level transitions — completing a level discards all level-specific state (enemy positions, item locations); only persistent player data carries through
  • Turn transitions — in turn-based games, the end of a turn is a closure point; temporary effects resolve, state simplifies
  • Tournament match end — only match outcome carries to the next round; all in-match information discarded

Design uses:

  • Natural save points — planning is naturally bounded by the next closure; this is where players expect to be able to stop
  • Narrative beats — closure points are where cut scenes, rewards, and story revelations are delivered; the moment of emotional processing
  • Pacing control — the frequency of closure points governs session pacing; frequent closures produce a fast rhythm; rare closures produce longer sustained tension

Committed Goals can be used to ensure closure points occur when needed for narrative structure — locking the player into completing a section before the closure fires.

Conflict with open-world design: Persistent game worlds with Never-Ending Stories resist closure points — there is no natural moment at which state is discarded. Open-world games must manufacture closure through optional quest completion or player-initiated milestones.

Trade-offs

High closure frequencyLow closure frequency
Quick sessions; easy to stopLong sustained engagement
Frequent reward deliveryRarer but more impactful rewards
Less tension; faster pacingHigher tension; slower pacing
Suitable for mobile / casualSuitable for narrative / immersive

Chess as limiting case: Chess has very few formal closure points — no levels, no save points, only the single closure of the match end. This contributes to its difficulty as a casual experience despite simple rules.

Examples

  • Any level-based game — completing a level is the canonical closure point; Super Mario Bros., Celeste, Quake
  • Poker hand — the showdown is a closure point; all betting information resolved, cards revealed, pot distributed
  • Candy Crush level clear — level completion with three-star scoring is a designed closure with explicit reward delivery
  • Dungeon floor completion in roguelikes — progress to next floor discards the current floor state; persistent elements carry through

interest-curves | hierarchy-of-goals | level-design | narrative-design | game-loops | source-patterns-in-game-design