Navigation
API > API/Plugins > API/Plugins/MeshPartitionEditor
CSG operation types
| Name | UE::MeshPartition::EBooleanOperation |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/MeshPartition/Source/MeshPartitionEditor/Public/Modifiers/MeshPartitionBooleanModifier.h |
| Include Path | #include "Modifiers/MeshPartitionBooleanModifier.h" |
Syntax
namespace UE
{
namespace MeshPartition
{
enum EBooleanOperation
{
Union = 0 UMETA(DisplayName = "Union"),
Subtract = 1 UMETA(DisplayName = "Subtract"),
Trim = 2 UMETA(DisplayName = "Trim"),
}
}
}
Values
| Name | Remarks |
|---|---|
| Union | Merges the Tool and Mesh Partition geometry into a locally-closed surface, removing internal surfaces where they overlap. |
| Subtract | Subtracts the Tool mesh from the Mesh Partition geometry, removing overlapping geometry and capping the result into a locally-closed surface. |
| Trim | Cuts away Mesh Partition geometry inside the Tool mesh, leaving an open hole at the boundary. |