Navigation
API > API/Editor > API/Editor/EditorInteractiveToolsFramework
Bitflags controlling visibility of translation delta visual elements during interaction.
| Name | EGizmoElementTranslateShowFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/Experimental/EditorInteractiveToolsFramework/Public/EditorGizmos/GizmoElementTranslate.h |
| Include Path | #include "EditorGizmos/GizmoElementTranslate.h" |
Syntax
enum EGizmoElementTranslateShowFlags
{
None = 0 UMETA(Hidden),
DeltaLine = 1 << 0,
DeltaLabel = 1 << 1,
DeltaOrigin = 1 << 2,
All = DeltaLine | DeltaLabel | DeltaOrigin,
}
Values
| Name | Remarks |
|---|---|
| None | No flags set. |
| DeltaLine | Show the dashed line from origin to current position. |
| DeltaLabel | Show the numeric distance label. |
| DeltaOrigin | Show the origin marker at the drag start point. |
| All | All delta visual elements enabled. |