Documentation

​
​

Development

User Acquisition

Monetization

Industry

Asset Transformer SDK

2026.1

Supported
​

User Manual

Python API

C# API

Changelog

Discussions

Asset Transformer SDK

2026.1

Supported
​

​
​
Get started
  • System requirements
  • Licensing
  • Setup
  • Migrate from Scenario Processor
Framework
  • Framework
  • Preferences
Input/output files
  • Supported formats
  • Import files
  • Export files
  • Export textures
  • CAD vs Mesh
Scene
  • Product structure
  • Occurrence
  • Component
  • Material
  • Image
Algorithms
  • CAD
  • Healing
  • Optimization
    • Decimate to quality
    • Decimate to quality (edge collapse)
    • Decimate to target polygon count
    • Remesh surfacic holes
    • Remove occluded geometries (standard)
    • Remove occluded geometries (advanced)
    • Remove holes
    • Compute Visual Footprint
    • Filleting on meshes
    • Loop Subdivision on Triangular Meshes
  • Combine and bake
  • Reconstruction
  • UVs
Viewer
  • Viewer
Pixyz UI
  • Setup
  • Overview
  • Create a custom UI
Guidelines
  • Data preparation
  • Process point clouds
Debug and diagnose
  • Log files
  • Debug best practices
Other
  • Samples
  • Glossary
  1. Asset Transformer SDK (ex Pixyz)

Remove occluded geometries – standard processing

Use this feature to reduce the polygon count of mesh models and optimize them for exterior viewing by deleting geometries that can't be viewed from the outside, such as parts completely concealed by others.
Read time 4 minutes
Last updated 9 months ago

API function: algo.removeOccludedGeometries
To reduce the polygon count of mesh models and optimize them for exterior viewing, you can delete geometries that can't be viewed from the outside.
For example, some parts may be completely concealed by others. You can delete these parts without affecting the outside appearance of models.
This processing proves particularly efficient on these models:
  • Models that have internal parts
  • Models that have been designed as solids
  • Models that have been designed using CAD software
This example shows a model whose polygon count decreases from 230,000 to 38,000 polygons after processing:
After processing, the parts that are visible behind the transparent cover are deleted.
Note
To preserve interior spaces, such as house interiors and cockpits, use smart processing instead. Read more.
Visibility queries are performed from various angles to determine which polygons can be viewed from the outside of the model. These results are used to deduct which polygons are occluded.
The more detailed the processing, the better the final quality, but the longer the scene takes to process and the less the polygon count decreases.
To reduce the polygon count while preserving visual quality, you can set various parameters:
  • The granularity level at which to process the scene – namely parts, patches, or polygons
  • Camera parameters, such as the number of cameras and the image resolution
  • Whether to preserve the neighboring polygons of captured polygons, to avoid apparent gaps
  • Whether to preserve geometries that can be viewed through transparent materials, such as windows
Tip
The placement of meshes is important. The feature takes matrices in the world space as input. We strongly recommend that you use this feature once per context, instead of once per mesh. Otherwise, some occluded geometries may not be identified as occluded.

Parameters

Occurrences

You can process the whole scene or part of it.
You don't need to process the areas that hide others, because these are already taken into account as potential occluders.
By definition, geometries whose
Visible
property is set to
False
aren't processed.
Geometries whose
Visible
property is set to
True
are processed as follows:
  • Selected geometries can be deleted and are used to determine the placement of cameras.
  • Unselected and selected geometries are all potential occluders.

Granularity level

Choose the granularity level at which to process the scene:

Type

Use

PartFor clean optimization, that is, to avoid apparent gaps, process the scene at the level of parts.
Patch
Polygon
To focus on reducing the polygon count, process the scene at the level of patches or polygons.

Cameras

Placement

To simulate a 360° virtual tour, virtual cameras capture the scene from viewpoints that are located on a sphere around the selection. The geometries that can’t be captured are deleted. For better visual quality, increase the number of cameras.
The geometries whose Visible property is set to False are ignored for the placement of the sphere, so that cameras focus on the geometries to be rendered.

Resolution

Image resolution also affects how geometries are captured by cameras. The higher the resolution, the longer the processing time, but the more pixels are generated. As a result, smaller polygons are captured and preserved.
If viewers get close to the model, increase the resolution to preserve visual quality from up close. If viewers are far from the model, use low resolution.

Neighboring polygons

If you process the scene at the polygon level, you can preserve the neighboring polygons of captured polygons, to avoid apparent gaps. This table shows the most common options:

Adjacency depth

Neighboring polygons that are preserved

Example of use

0NoneViewers are far from the model. You want to focus on reducing the polygon count.
1Adjacent polygonsViewers get closer to the model. You want to avoid apparent gaps.
2Adjacent polygons and their adjacent polygonsViewers get closer to the model. You want to avoid apparent gaps.
This example illustrates how this parameter affects meshes:
The higher the adjacency depth value, the smaller the gaps in meshes. On this model, an adjacency depth of 2 is enough to avoid any gap.

Transparency

You can preserve geometries that can be viewed through transparent materials, such as windows and windshields.
In this example, the internal parts that can be viewed through transparent material are deleted.

Copyright © 2026 Unity Technologies
LegalPrivacy PolicyCookiesDocumentation Terms of UseDo Not Sell or Share My Personal InformationYour Privacy Choices (Cookie Settings)

"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S and elsewhere (more info here). Other names or brands are trademarks of their respective owners.

Some pages are machine-translated for convenience, and may contain inaccuracies. In the event of conflicting information, the English version is authoritative.

  • On this page
    • Parameters

      • Occurrences

      • Granularity level

      • Cameras

        • Placement

        • Resolution

      • Neighboring polygons

      • Transparency

  • Additional resources
  • Remove occluded geometries – advanced processing

Report a problem with this page