Summary

The Layered Tetrad is Jeremy Gibson Bond’s synthesis framework for analysing and designing games. It extends Schell’s elemental-tetrad (Mechanics, Aesthetics, Technology, Narrative) with three layers that describe when each element exists and who owns it.

The four elements are shared with the Elemental Tetrad (Bond renames “Story” to “Narrative”). The three layers — Inscribed, Dynamic, and Cultural — describe the lifecycle of those elements from developer creation through player community transformation.

(Bond, Introduction to Game Design, Prototyping, and Development, see source-introduction-game-design-prototyping)

The three layers

Inscribed layer

What: Everything the developer authors before play begins — rules, code, art assets, narrative scripts, UI, sound.

Who owns it: The developer, entirely.

When it exists: Pre-play. The inscribed layer exists whether or not anyone ever plays the game.

Examples by element:

  • Inscribed Mechanics: rules, win/lose conditions, procedures, the physics engine’s parameters
  • Inscribed Aesthetics: sprites, 3D models, lighting rigs, sound files, UI art, colour palettes
  • Inscribed Technology: the engine, platform target, file format, hardware requirements
  • Inscribed Narrative: written script, authored branching structure, character backstory documents, pre-rendered cutscenes

The inscribed layer is the totality of what the developer delivers. Everything the designer can directly control is inscribed.

Dynamic layer

What: What emerges when players interact with the inscribed elements during actual play.

Who owns it: Shared between developer and player. The designer creates the conditions; the player’s choices create the specific expression.

When it exists: During play, in real time.

Examples by element:

  • Dynamic Mechanics: emergent tactics, unscripted player strategies, the actual difficulty curve experienced in a session
  • Dynamic Aesthetics: the emotional experience the player has — excitement, tension, delight, frustration; distinct from the inscribed assets that attempt to produce it
  • Dynamic Technology: runtime performance, frame rate, procedurally generated content at play time
  • Dynamic Narrative: emergent story arising from player choices and unexpected events; the personal narrative the player constructs (“I almost died, then saved the day”)

The gap between inscribed design and dynamic experience is the central challenge of game design. A mechanic that looks balanced on paper (inscribed) may produce frustrating dynamics in play.

Cultural layer

What: Everything that accumulates around a game after and beyond play — community practices, player-created content, shared meanings.

Who owns it: The player community. The developer cannot control or author this layer.

When it exists: Beyond the play session, in the wider culture.

Examples by element:

  • Cultural Mechanics: speedrunning categories and rules, fan-invented challenge modes (nuzlocke runs), tournament meta, house rules
  • Cultural Aesthetics: fan art, cosplay, YouTube highlight reels, streaming culture, memes derived from the game’s visual language
  • Cultural Technology: mods, fan-made tools, emulator ecosystems, wikis
  • Cultural Narrative: fan fiction, expanded universe content, community lore, headcanons, alternate interpretations

The cultural layer is the measure of a game’s durability and cultural impact. Designers can design for the cultural layer (e.g. by including mod support, building a legible competitive meta, or creating a distinctive aesthetic that invites fan creativity) but cannot author it directly.

Relationship to other frameworks

FrameworkKey contributionHow Layered Tetrad extends it
Schell’s elemental-tetradFour elements (Mechanics, Story, Aesthetics, Technology)Adds three layers; renames “Story” → “Narrative”
mda-frameworkMechanics → Dynamics → Aesthetics (as emotional response)Dynamic layer maps roughly to MDA’s Dynamics; Aesthetics clarified across layers
Fullerton’s Formal/Dramatic/Dynamic elementsCategorises game elements by structural roleBond’s Dynamic layer incorporates Fullerton’s dynamic elements (emergence, emergent narrative)

Key vocabulary clash with Schell: Schell’s “Aesthetics” = sensory presentation (inscribed). Bond uses “Aesthetics” at all three layers — inscribed aesthetics (assets), dynamic aesthetics (emotional experience), and cultural aesthetics (fan creative output). When using both frameworks, specify which layer is meant.

Key vocabulary clash with MDA: MDA’s “Aesthetics” = emotional response (Bond’s Dynamic Aesthetics). MDA uses “Mechanics” where Bond might say “Inscribed Mechanics.” The Layered Tetrad is more granular on the pre-play side; MDA is more granular on the player-experience side.

In practice

Use the Layered Tetrad as a diagnostic tool when design problems arise:

  1. Identify which layer the problem is in. A problem in the inscribed layer (a rule is unclear) is solvable by the designer directly. A problem in the dynamic layer (players are finding an unintended tactic) requires inscribed changes to address, but the root cause is dynamic. A problem in the cultural layer (community is playing in a way that undermines the intended experience) may be unfixable by the designer.

  2. Check all four elements at the relevant layer. Dynamic narrative problems often point to inscribed mechanic issues. Cultural mechanics (speedrunning meta) may expose gaps in inscribed mechanics (skippable content, physics exploits).

  3. Distinguish intent from outcome. “The inscribed aesthetics are excellent” (great art assets) does not imply “the dynamic aesthetics will be positive” (players will have the intended emotional experience). These require separate evaluation.

Design for the Cultural layer (optional but powerful):

  • Build mod support → cultural technology
  • Create a legible competitive meta → cultural mechanics
  • Develop distinctive visual language → cultural aesthetics (invites fan art)
  • End with ambiguity or unexplored world-space → cultural narrative

Evidence

Bond introduces the Layered Tetrad in Ch. 3 as an original synthesis framework. He grounds the inscribed/dynamic distinction in Fullerton’s formal/dramatic/dynamic elements (Tracy Fullerton, Game Design Workshop) and explicitly extends Schell’s tetrad.

“The Inscribed layer is everything you, as the designer, put into the game before play begins. The Dynamic layer is everything that emerges during play. The Cultural layer is everything the player community builds around the game.” — Bond, Ch. 3 (paraphrase, source-introduction-game-design-prototyping)

Implications

  • Most design work is inscribed. Everything a designer can directly control is in the inscribed layer. This is why playtesting is essential — to observe what dynamic layer actually emerges.
  • Playtesting bridges inscribed → dynamic. The inscribed design is your hypothesis; playtesting observes whether the dynamic experience matches the intended design.
  • The cultural layer is evidence of success. If a game generates a rich cultural layer (speedrunning, cosplay, fan wikis), it has achieved something beyond entertainment — it has become a cultural object.
  • Unity/C# mapping: Inscribed Mechanics = scripts, ScriptableObjects, physics settings; Inscribed Aesthetics = art assets, audio clips, UI prefabs; Dynamic Mechanics = runtime emergent behaviour; Dynamic Aesthetics = the player’s emotional state during play.

Open questions

  • Can the Cultural layer be designed for systematically, or only supported incidentally?
  • The Dynamic layer is shared ownership — but when players do something unintended (an exploit, an emergent tactic), should designers embrace it or patch it? The Layered Tetrad describes the phenomenon but does not prescribe the response.
  • Bond’s framework is primarily analytical. Does it generate design decisions, or only post-hoc descriptions?