EPolyEditOffsetModeOptions

Choose your operating system:

Windows

macOS

Linux

References

Module

MeshModelingTools

Header

/Engine/Plugins/Runtime/MeshModelingToolset/Source/MeshModelingTools/Public/ToolActivities/PolyEditExtrudeActivity.h

Include

#include "ToolActivities/PolyEditExtrudeActivity.h"

Syntax

enum EPolyEditOffsetModeOptions
{
    VertexNormals                  = static_cast(UE::Geometry::FExtrudeOp::EDirectionMode::VertexNormals),
    SelectedTriangleNormals        = static_cast(UE::Geometry::FExtrudeOp::EDirectionMode::SelectedTriangleNormals),
    SelectedTriangleNormalsEven    = static_cast(UE::Geometry::FExtrudeOp::EDirectionMode::SelectedTriangleNormalsEven),
}

Values

Name

Description

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.