Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework
References
| Module | InteractiveToolsFramework |
| Header | /Engine/Source/Runtime/InteractiveToolsFramework/Public/InteractiveToolActionSet.h |
| Include | #include "InteractiveToolActionSet.h" |
Syntax
class FInteractiveToolActionSet
Remarks
FInteractiveToolActionSet maintains a list of FInteractiveToolAction. Each UInteractiveTool contains an instance of this class.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray< FInteractiveToolAction > | Actions |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | CollectActions
(
TArray< FInteractiveToolAction >& OutActions |
Return the internal list of registered Actions by adding to the OutActions array | |
| void | ExecuteAction
(
int32 ActionID |
Execute the action identified by ActionID | |
| const FInteractiveToolAction * | FindActionByID
(
int32 ActionID |
Find an existing Action by ID | |
| void | RegisterAction
(
UInteractiveTool* Tool, |
Register an Action with the ActionSet. |