Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
EMeshLODSelectionType |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Public/MeshMerge/MeshMergingSettings.h |
| Include Path |
#include "MeshMerge/MeshMergingSettings.h" |
Syntax
enum EMeshLODSelectionType
{
AllLODs = 0 UMETA(DisplayName = "Use all LOD levels", ScriptName="AllLods;AllLODs"),
SpecificLOD = 1 UMETA(DisplayName = "Use specific LOD level"),
CalculateLOD = 2 UMETA(DisplayName = "Calculate correct LOD level"),
LowestDetailLOD = 3 UMETA(DisplayName = "Always use the lowest-detail LOD (i.e. the highest LOD index)"),
}
Values
| Name |
Remarks |
| AllLODs |
Whether or not to export all of the LODs found in the source meshes. |
| SpecificLOD |
Whether or not to export all of the LODs found in the source meshes. |
| CalculateLOD |
Whether or not to calculate the appropriate LOD model for the given screen size. |
| LowestDetailLOD |
Whether or not to use the lowest-detail LOD. |