Quick answer: If you move objects by a fixed amount per frame instead of multiplying by delta time, your game runs faster on high-refresh monitors and slower on weak ones. Multiply all motion and time-based change by the frame's elapsed time so behavior is identical at any frame rate.

One of the most classic and embarrassing bugs in game development is the game that plays at double speed on a fast monitor. It comes from a single oversight—forgetting delta time—and it's worth understanding deeply because it hides in subtle places long after you think you've fixed it.

Frame-rate-dependent movement

If you move the player 'five pixels per frame,' then at sixty frames per second they move three hundred pixels a second, and at one-twenty they move six hundred—the game literally runs twice as fast on a faster machine. The fix is to express motion in terms of time, not frames: multiply by delta time, the seconds elapsed since the last frame, so 'three hundred pixels per second' moves the same distance regardless of frame rate. This single discipline makes your game behave identically whether it's running on a potato or a high-refresh gaming rig.

The subtlety is that delta time has to be applied everywhere time matters, not just to obvious movement. Timers, animations, physics, cooldowns, interpolation—anything that should progress at a real-world rate needs to be scaled by elapsed time, and it's easy to handle the player's velocity correctly while leaving a dozen other frame-dependent behaviors lurking. There are also edge cases: very large delta times after a hitch can cause objects to tunnel through walls, which is why physics often uses a fixed timestep instead. But the core rule is foundational—tie change to time, never to frames—and getting it right everywhere is what makes a game feel consistent across the wild variety of hardware players own.

Polish where players actually look

Polish is not evenly valuable. Players form an impression in the first minutes and spend most of their time in the core loop, so effort spent there returns far more than effort spread thin across content few people reach. The opening, the moment-to-moment feel, and the things every player touches are where polish converts directly into how good the game feels.

Be deliberate about it. Make the first impression strong and the core interactions satisfying before widening out, because a great core with less content almost always beats a sprawling game that never feels good to play.

Scope is a decision, not an accident

Almost every overscoped game got that way one reasonable addition at a time, with no single decision ever feeling like the mistake. The finish line recedes a little with each new feature, and because the project always feels nearly done, the developer rarely notices how far the goal has drifted until they're exhausted and the game still isn't out.

Treat scope as something you actively decide rather than something that happens to you. Write down what the finished game contains, make every addition a conscious trade against that, and keep most new ideas in a backlog where they belong — because a small game you finish beats a large one you abandon.

Measure before you optimise

Intuition about what's slow, what's confusing, or what's driving players away is usually wrong, and acting on it wastes effort on problems that don't matter while the real ones persist. The developers who improve their games efficiently are the ones who measure first — profiling performance, watching real sessions, capturing actual errors — and let the data set their priorities.

It's slower than trusting your gut, but it's the only approach that reliably improves the game instead of just changing it. Find the biggest real problem, fix that, and measure again, rather than optimising guesses.

The first impression is most of the battle

More players leave in the opening minutes than at any other point, which makes the first few minutes the highest-leverage stretch of the whole game — and also the part the developer can least see clearly, having played it a thousand times. What feels obvious to you is often confusing to someone seeing it fresh, and that gap quietly costs you players before they ever reach the good part.

Get the player into the interesting part fast, let them feel competent quickly, and watch first-time players go through the opening without helping them. Nobody quits a game they're enjoying, so making the early minutes land is most of the battle for retention.

Small and finished beats big and abandoned

A folder of impressive unfinished projects teaches far less than a single small finished one, because finishing is where the hardest and most valuable lessons live — the unglamorous final stretch of bug-fixing, polishing, and shipping that ambitious abandoned projects never reach. Each completed game, however modest, builds the finishing muscle and the confidence that make the next one achievable.

So resist the pull of the dream project until you've shipped a few small ones. Scope to what you can actually complete, finish it, and let the experience of shipping make your bigger ambitions realistic.

Trust behaviour over opinions

People are unreliable narrators of their own experience — they're polite, they rationalise, they suggest fixes that miss the real problem. What they do tells the truth that what they say obscures: where they hesitate, where they get stuck, what they ignore, where they quit. The most valuable feedback is usually the behaviour you observe, not the opinion you're offered.

This is why watching beats asking, and why real data about what players actually do beats any amount of speculation. When several people stumble at the same spot, that's a problem worth fixing, regardless of whether any of them mentioned it.

Tie motion to time, not to frames. 'Per second' is correct; 'per frame' is a bug waiting for fast hardware.