Documentation

Support

Asset Transformer SDK


User Manual

Python API

C# API

Changelog

Discussions

Asset Transformer SDK

Retopologize meshes

Generates a simplified mesh from selected occurrences. Commonly used in retopology workflows to create clean, optimized geometry for further processing such as baking materials or generating LODs.
Read time 1 minuteLast updated 19 hours ago

API function: algo.retopologize Use this feature to create a lightweight representation of a complex mesh by reducing the polygon count. This feature is suitable for colliders, levels of detail (LODs), and devices with limited graphics power.

The algorithm

This algorithm is based on Instant Field-Aligned Meshes. It will produce a new mesh, containing either only quadrangles (if pureQuad is checked) or triangles and quadrangles. The target triangle count is indicative and will not create exactly the input number. One major advantage of this approach is that the final mesh will automatically align to the structure of the 3D model.

Precision

The precision parameter will increase the fidelity of the output mesh, at the expense of some more polygons and more processing time.

Limitation

This algorithm does not handle surfacic meshes correctly. For surfacic meshes, consider using the proxy mesh with the surfacic parameter checked, or the dual contouring that will automatically handle the surfacic parts.