Why optimization exists at all
Source geometry is almost never production geometry. A ZBrush sculpt can carry tens of millions of polygons; a photogrammetry scan or 3D-generated model arrives as a dense, disordered shell. None of that can be rigged, unwrapped, or rendered in real time as-is.
Optimization is the step that turns raw density into a mesh that fits its budget: smaller files, faster loading, stable frame rates, and UVs that a texture artist can actually work with.
The automated toolkit
- Decimation — collapses edges to hit a target count while preserving the silhouette. Fast and shape-faithful, but the output is unstructured triangles: fine for static props and background scans, wrong for anything that deforms.
- Voxel / quad remeshing — rebuilds the surface as an even grid. Great for cleaning scan data, merging kitbashed parts, or producing a uniform sculpting base. The flow is even but not intentional: it does not know where the elbow is.
- Auto-retopology — quad remeshing steered by guides, curvature, or density maps. The closest automation gets to hand work, and often 80% of the way there.
- LOD generation — automated chains of progressively lighter versions of one asset, swapped by distance in-engine.
Where hands still win
Manual retopology — drawing the production mesh over the sculpt, polygon by polygon — survives because algorithms optimize for evenness, and production topology is deliberately uneven. A character artist puts loops around the eyes and mouth, radial fans at joints, and density exactly where the rig will bend the surface.
Hard-surface work has its own version: bevels, holding edges, and boolean cleanup placed to keep panels crisp under subdivision. No current auto-retopo reads that intent from the shape alone.
The practical split: automate anything static or scanned; hand-build anything that deforms, subdivides, or fills the screen.
The hybrid pipeline
In practice the two are stages, not rivals. A common production loop:
- Sculpt or scan at full density, ignoring topology entirely.
- Auto-remesh to a clean working base for detailing.
- Retopologize the final surface — automated with guides, or by hand for hero assets.
- Unwrap, bake the high-density detail down (Module 3 covers why flow matters here), and generate LODs automatically.
Each pass exists to make the next one cheaper. The measure of a good optimization workflow is not how clever any single step is, but how little rework the chain produces.