Navigation
API > API/Editor > API/Editor/BlueprintEditorLibrary > API/Editor/BlueprintEditorLibrary/UBlueprintEditorLibrary
Description
Finds the event graph of the given blueprint. Null if it doesn't have one. This will only return the primary event graph of the blueprint (the graph named "EventGraph").
| Name | FindEventGraph |
| Type | function |
| Header File | /Engine/Source/Editor/BlueprintEditorLibrary/Public/BlueprintEditorLibrary.h |
| Include Path | #include "BlueprintEditorLibrary.h" |
| Source | /Engine/Source/Editor/BlueprintEditorLibrary/Private/BlueprintEditorLibrary.cpp |
UFUNCTION (BlueprintCallable, Category="Blueprint Upgrade Tools")
static UEdGraph * FindEventGraph
(
UBlueprint * Blueprint
)
UEdGraph* Event graph of the blueprint if it has one, null if it doesn't have one
Parameters
| Name | Remarks |
|---|---|
| Blueprint | Blueprint to search for the event graph on |