Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework
Passed to UInteractiveTool::Shutdown to indicate how Tool should shut itself down
| Name | EToolShutdownType |
| Type | enum |
| Header File | /Engine/Source/Runtime/InteractiveToolsFramework/Public/InteractiveTool.h |
| Include Path | #include "InteractiveTool.h" |
Syntax
enum EToolShutdownType
{
Completed = 0,
Accept = 1,
Cancel = 2,
}
Values
| Name | Remarks |
|---|---|
| Completed | Tool cleans up and exits. Pass this to tools that do not have Accept/Cancel options. |
| Accept | Tool commits current preview to scene |
| Cancel | Tool discards current preview without modifying scene |