Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework
High-level configuration options for a standard 3D translate/rotate/scale Gizmo, like is commonly used in 3D DCC tools, game editors, etc This is meant to be used to convey UI-level settings to Tools/Gizmos, eg like the W/E/R toggles for Rranslate/Rotate/Scale in Maya or UE Editor. More granular control over precise gizmo elements is available through other mechanisms, eg the ETransformGizmoSubElements flags in UCombinedTransformGizmo
| Name | EToolContextTransformGizmoMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/InteractiveToolsFramework/Public/ToolContextInterfaces.h |
| Include Path | #include "ToolContextInterfaces.h" |
Syntax
enum EToolContextTransformGizmoMode
{
NoGizmo = 0,
Translation = 1,
Rotation = 2,
Scale = 3,
Combined = 8,
}
Values
| Name | Remarks |
|---|---|
| NoGizmo | Hide all Gizmo sub-elements |
| Translation | Only Show Translation sub-elements |
| Rotation | Only Show Rotation sub-elements |
| Scale | Only Show Scale sub-elements |
| Combined | Show all available Gizmo sub-elements |