EEdGraphActionType

This is the type of action that occurred on a given graph

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Public/GraphEditAction.h

Include

#include "GraphEditAction.h"

Syntax

enum EEdGraphActionType
{
    GRAPHACTION_Default       = 0x0,
    GRAPHACTION_AddNode       = 0x1 << 0,
    GRAPHACTION_SelectNode    = 0x1 << 1,
    GRAPHACTION_RemoveNode    = 0x1 << 2,
}

Values

Name

Description

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

Remarks

This is the type of action that occurred on a given graph

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss