Game Feel
The perceptual layer between input and simulation, and the tuning that makes a control scheme read as responsive.
Game feel is the perceptual layer between a player's input and the simulation underneath. Steve Swink's 2008 book of that name defines it as real-time control of a virtual body in a simulated space, refined by polish — the sounds, particles and secondary motion that give an action apparent weight. None of it changes what the simulation computes; all of it changes what the player believes it computed.
The vocabulary is small and largely portable. Input buffering accepts a press made slightly before its window opens and fires it when the window arrives. Coyote time leaves a jump available for a few frames after the character has left the ledge. Hitstop freezes both parties on impact, communicating force through the absence of motion. Screen shake and impact flashes supply magnitude. Animation timing — startup, active and recovery frames, and the windows in which an animation may be cancelled — decides whether an input feels obeyed or ignored.
The useful claim is that "the controls feel wrong" is almost always a tuning problem rather than a physics problem. The instinct is to change gravity or acceleration constants; the fault is more often thirty milliseconds of uncancellable startup, an input sampled once per rendered frame instead of once per fixed step, a deadzone that swallows small stick movements, or a linear ramp where the eye expects an Easing curve. The rules that govern interface Motion Design apply here, because the player is reading motion.
Two adjacent concerns. Consistency requires a fixed timestep and clean Determinism, since a feel tuned against a variable frame rate is not reproducible. And several of these effects are hostile to some players: shake and camera sway belong behind Reduced Motion settings, while buffering and coyote time are quietly among the most effective Accessibility measures a game can ship.
See also4
Hand-picked in the note itself — the neighbours worth reading next.
Roguelike
A genre defined by procedurally generated runs and permanent death, and the design pressures those create.
Graphics & Games15 connections
Game AI
Computer opponents built to be interesting to play against rather than optimal.
Graphics & Games14 connections
Environmental Storytelling
Narrative carried by placed objects and world state rather than dialogue, completed by the audience's inference.
Graphics & Games11 connections
Rasterization
Converting geometry into pixels — the dominant real-time rendering approach.
Graphics & Games10 connections
Linked from5
Notes elsewhere in the wiki that reach for this one.
- EasingDesign & Interface
The curve mapping elapsed time to progress, and the main reason motion feels right or wrong.
- Environmental StorytellingGraphics & Games
Narrative carried by placed objects and world state rather than dialogue, completed by the audience's inference.
- Gacha MonetizationGraphics & Games
Selling randomized draws rather than items, and the structures that make the real price hard to see.
- Ludonarrative DissonanceGraphics & Games
Friction between what a game's mechanics reward and what its story claims to value.
- RasterizationGraphics & Games
Converting geometry into pixels — the dominant real-time rendering approach.