FEdGraphEditAction

Struct containing information about what actions occurred on the graph

Choose your operating system:

Windows

macOS

Linux

References

Module

Engine

Header

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

Include

#include "GraphEditAction.h"

Syntax

struct FEdGraphEditAction

Remarks

Struct containing information about what actions occurred on the graph

Variables

Name Description

Public variable

EEdGraphActionT...

 

Action

The action(s) that occurred

Public variable

bool

 

bUserInvoked

Whether the user invoked this change or not

Public variable

UEdGraph *

 

Graph

The graph the action occurred on

Public variable

TSet< const cla...

 

Nodes

[Optional] The object the action occurred on

Constructors

Name Description

Public function

FEdGraphEditAction()

Public function

FEdGraphEditAction

(
    EEdGraphActionType InAction,
    UEdGraph* InGraph,
    UEdGraphNode* InNode,
    bool bInUserInvoked
)