What Is LOD? Level of Detail in 3D and Games
LOD, or level of detail, means showing a simpler version of a 3D model the farther it is from the camera. Here is what LOD means and how it works.
In this article
- LOD means showing a simpler version of a 3D model once it is far from the camera.
- Games use LOD to keep large scenes running smoothly without a visible drop in quality.
- LOD levels can be made by hand or with automatic decimation, then switched with smoothing to avoid a visible pop.
- In architecture, LOD usually means Level of Development, how complete a building model's information is, not polygon count.
LOD stands for level of detail. In 3D graphics and games, it means showing a simpler version of a model once it is farther from the camera, then swapping back to the full detail version as it gets closer. It is one of the main ways games keep a large scene running smoothly.
The idea is straightforward, but the details matter: how many LOD levels to make, when to switch between them, and how to avoid the switch being visible. This guide covers what LOD means, why games rely on it, how LOD meshes are made, and how the term is used differently again in architecture and 3D modeling for buildings, where LOD stands for something else entirely.
What is LOD (level of detail)
LOD is the practice of keeping several versions of the same 3D model, each with a different polygon count, and showing whichever one fits the situation. The full detail version is usually called LOD0. Lower detail versions are numbered up from there: LOD1, LOD2, LOD3, and so on, each one lighter than the last.
An object far from the camera does not need the same detail as one right in front of it. The viewer cannot see the difference at that distance anyway, so the engine swaps in a lighter version and saves the processing power for objects that are actually close and visible.

Why games use LOD
A game scene can hold hundreds or thousands of objects at once: characters, props, buildings, foliage. Rendering every one of them at full detail, all the time, would ask far more of the graphics hardware than most scenes need, since most of those objects sit in the middle or far distance at any given moment.
LOD lets the engine spend its budget where it is noticed: on what is close to the player. Distant objects switch to lighter versions that use fewer polygons and often simpler materials, which frees up processing power without a visible drop in quality, since the viewer was never going to see that level of detail at that distance anyway.
How LOD levels are made
Every LOD chain starts from the full detail LOD0 model. The lighter versions can be produced in two ways.

Manual reduction
An artist builds each lower LOD by hand, following the same process used when you 3D model anything from scratch: removing edge loops, simplifying shapes, and merging small details that would not read at a distance anyway. This takes longer than an automatic pass, but gives the most control, especially on a hero object where a bad automatic reduction would be obvious.
Automatic decimation
A decimation tool reduces the polygon count of a mesh automatically, following rules such as a target face count or an allowed amount of shape distortion. Most 3D modeling software has a built in decimation or optimize modifier for this, and dedicated LOD generation tools exist for studios producing many assets. Automatic decimation is faster, but the result usually needs a manual check, since the tool can simplify important edges and small features the same way it simplifies flat, unimportant ones.

Switching distances and LOD popping
Each LOD level is assigned a distance range from the camera. Once the object crosses that distance, the engine swaps to the next LOD level. Set the distances too close together and the swap happens constantly for no benefit. Set them too far apart and the drop in detail becomes obvious.
The visible jump when a model switches LOD levels is called popping. It stands out most on a large object crossing the screen slowly, where the eye has time to notice the change. Games reduce popping by blending between LOD levels over a short distance, or by dithering the transition, instead of swapping in a single frame.
Tip: keep LOD switch distances tied to an object’s size and how central it usually is in the frame, not to a single fixed distance for every object in the scene.
HLOD and impostors
Two related techniques go further once an object, or a whole group of objects, is far enough away.
- HLOD (hierarchical LOD) merges a cluster of separate objects, such as an entire building or a group of props, into a single simplified mesh once the group is distant enough that the individual pieces cannot be told apart anyway.
- Impostors replace the 3D geometry entirely with a flat image of the object, angled to always face the camera. This is common for distant trees and crowds, where a flat image looks the same as real geometry at that distance but costs almost nothing to render.

LOD in architecture and BIM means something different
In architecture and construction, LOD usually stands for Level of Development, not level of detail, and it means a different thing entirely. It describes how complete and reliable the information in a building model is, not how many polygons it has or how it gets simplified for real time rendering.
Level of Development runs on a scale from LOD 100 to LOD 500: LOD 100 is a rough conceptual mass, and LOD 500 is a fully verified, as built model that matches the finished construction. A model can look highly detailed visually and still be an early LOD in the Level of Development sense, if the information behind the geometry has not been confirmed yet. This is a documentation standard for the building industry, and has nothing to do with a game engine switching meshes by camera distance.


Getting LOD ready game assets built
A studio building a game ready asset usually delivers the full detail LOD0 model plus one or more reduced LOD versions, sharing the same UV layout and materials so the swap between them is not noticeable. What a studio needs from you is the target engine or platform, the polygon budget if one exists, and reference for the object.
3D Studio models 3D assets for game studios, alongside architectural modeling and product work, and can deliver a model ready for LOD generation in your own pipeline or built out as a full LOD chain.
Questions about LOD
What does LOD0 mean?
LOD0 is the full detail version of a model, the one shown when the camera is closest. Higher numbers such as LOD1, LOD2 and LOD3 are progressively lighter versions of the same object.
Is LOD the same as Level of Development in architecture?
No. They share the same abbreviation but mean different things. Level of detail is about polygon count and render distance in real time graphics. Level of Development is about how complete and verified a building model’s information is, on a scale from LOD 100 to LOD 500.
Does using LOD lower visual quality?
Not in a way players notice, when it is set up well. The reduced detail only shows on objects far enough away that the difference is not visible, and the switch between levels is smoothed to avoid a visible pop.
How many LOD levels does a model need?
There is no fixed number. It depends on the object’s size, how close the camera usually gets to it, and the platform. A small background prop may only need one or two extra levels, while a large hero object seen at many distances may need more.



