Navigation
API > API/Plugins > API/Plugins/GeometryScriptingCore
Mode passed to ApplyMeshBevelSelection to control how the input Selection should be interpreted as selecting an area of the mesh to Bevel
| Name | EGeometryScriptMeshBevelSelectionMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GeometryScripting/Source/GeometryScriptingCore/Public/GeometryScript/MeshModelingFunctions.h |
| Include Path | #include "GeometryScript/MeshModelingFunctions.h" |
Syntax
enum EGeometryScriptMeshBevelSelectionMode
{
TriangleArea = 0,
AllPolygroupEdges = 1 UMETA(DisplayName = "All PolyGroup Edges"),
SharedPolygroupEdges = 2 UMETA(DisplayName = "Shared PolyGroup Edges"),
SelectedEdges = 3,
}
Values
| Name | Remarks |
|---|---|
| TriangleArea | Convert the selection to Triangles and bevel the boundary edge loops of the triangle set |
| AllPolygroupEdges | Convert the selection to PolyGroups and bevel all the PolyGroup Edges of the selected PolyGroups |
| SharedPolygroupEdges | Convert the selection to PolyGroups and bevel all the PolyGroup Edges that are between selected PolyGroups |
| SelectedEdges | Convert the selection to Edges (if needed) and bevel them |