Navigation
API > API/Editor > API/Editor/EditorInteractiveToolsFramework
Bitflags controlling visibility of scale delta visual elements during interaction.
| Name | EGizmoElementScaleShowFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/Experimental/EditorInteractiveToolsFramework/Public/EditorGizmos/GizmoElementScale.h |
| Include Path | #include "EditorGizmos/GizmoElementScale.h" |
Syntax
enum EGizmoElementScaleShowFlags
{
None = 0 UMETA(Hidden),
DeltaLine = 1 << 0,
DeltaLabel = 1 << 1,
All = DeltaLine | DeltaLabel,
}
Values
| Name | Remarks |
|---|---|
| None | No flags set. |
| DeltaLine | Show the delta line from the axis handle to the scaled position. |
| DeltaLabel | Show the numeric scale label. |
| All | All delta visual elements enabled. |