The Camera Is a Character
Most beginners make the camera rigidly snap to the player's exact position and never think about it again. That single choice quietly makes a game feel cheap, nauseating, and amateur. A great camera is invisible โ and invisible takes deliberate work.
The camera is doing three jobs at once:
1. Framing โ keeping the player visible and showing them what they need to see next.
2. Communicating โ where it points tells the player what matters.
3. Feeling โ how it moves is a huge, underrated part of game feel.
The techniques tutorials skip:
- โธSmoothing / damping โ never hard-snap to the player. Lerp the camera toward the target so it follows with a little lag. (Unity:
Vector3.SmoothDamp.) Instant feel: less mechanical, more alive. - โธLook-ahead โ offset the camera in the direction the player is moving or facing, so they see more of where they're going than where they've been. This single change makes fast platformers feel readable instead of claustrophobic.
- โธDead zone โ a box in the center where the player can move without the camera reacting at all. Stops the jittery micro-movement of a camera chasing every tiny input.
- โธLook-down / look-up โ let the player nudge the camera to see below a pit before they leap. Communication.
- โธScreen shake & punch โ covered under juice, but it lives in the camera. Subtle and brief, or it's a migraine.
The deep idea: The camera is the player's attention, externalized. Where it rests, what it anticipates, how nervously or calmly it moves โ that's an emotional channel you're either using on purpose or wasting by accident.
Game to Study
Celeste / Hollow Knight
Watch the camera in any platformer you love, ignoring everything else. When does it lead the player vs follow them? Does it have a dead zone? Does it move differently when you're falling fast vs walking? List three deliberate behaviors you spot.
Unity Tip
Don't hand-roll it โ install Cinemachine (free, built into Unity). A 2D Virtual Camera with a Framing Transposer gives you dead zone, damping, and look-ahead with sliders. Spend 20 minutes tuning those sliders on your platformer; it's the highest feel-per-minute change available to you.
Your platformer's camera is locked dead-center on the player and a tester says fast sections feel 'cramped and reactive, like I can't see where I'm going.' Name the two specific camera techniques that fix this, explain what each does perceptually, and which you'd add first.