Navigation
API > API/Plugins > API/Plugins/MeshModelingTools
| |
|
| Name |
EPolyEditOffsetModeOptions |
| Type |
enum |
| Header File |
/Engine/Plugins/Runtime/MeshModelingToolset/Source/MeshModelingTools/Public/ToolActivities/PolyEditExtrudeActivity.h |
| Include Path |
#include "ToolActivities/PolyEditExtrudeActivity.h" |
Syntax
enum EPolyEditOffsetModeOptions
{
VertexNormals = static_cast<int>(UE::Geometry::FExtrudeOp::EDirectionMode::VertexNormals),
SelectedTriangleNormals = static_cast<int>(UE::Geometry::FExtrudeOp::EDirectionMode::SelectedTriangleNormals),
SelectedTriangleNormalsEven = static_cast<int>(UE::Geometry::FExtrudeOp::EDirectionMode::SelectedTriangleNormalsEven),
}
Values
| Name |
Remarks |
| VertexNormals |
Vertex normals, regardless of selection. |
| SelectedTriangleNormals |
Take the angle-weighed average of the selected triangles around offset vertex to determine vertex movement direction. |
| SelectedTriangleNormalsEven |
Like Selected Triangle Normals, but also adjusts the distances moved in an attempt to keep triangles parallel to their original facing. |