Navigation
API > API/Editor > API/Editor/EditorInteractiveToolsFramework
Bitflags controlling visibility of rotation delta visual elements during interaction.
| Name | EGizmoElementRotateShowFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/Experimental/EditorInteractiveToolsFramework/Public/EditorGizmos/GizmoElementRotate.h |
| Include Path | #include "EditorGizmos/GizmoElementRotate.h" |
Syntax
enum EGizmoElementRotateShowFlags
{
None = 0 UMETA(Hidden),
DeltaArc = 1 << 0,
DeltaLabel = 1 << 1,
All = DeltaArc | DeltaLabel,
}
Values
| Name | Remarks |
|---|---|
| None | No flags set. |
| DeltaArc | Show the filled arc indicating the rotation delta. |
| DeltaLabel | Show the numeric angle label. |
| All | All delta visual elements enabled. |