Navigation
API > API/Runtime > API/Runtime/Engine
This is the type of action that occurred on a given graph
| Name | EEdGraphActionType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/GraphEditAction.h |
| Include Path | #include "GraphEditAction.h" |
Syntax
enum EEdGraphActionType
{
GRAPHACTION_Default = 0x0,
GRAPHACTION_AddNode = 0x1 << 0,
GRAPHACTION_SelectNode = 0x1 << 1,
GRAPHACTION_RemoveNode = 0x1 << 2,
GRAPHACTION_EditNode = 0x1 << 3,
}
Values
| Name | Remarks |
|---|---|
| GRAPHACTION_Default | A default edit with no information occurred |
| GRAPHACTION_AddNode | A node was added to the graph |
| GRAPHACTION_SelectNode | A node was selected |
| GRAPHACTION_RemoveNode | A node was removed from the graph at the user's request |
| GRAPHACTION_EditNode | A node was edited in the graph by a user |