Navigation
API > API/Editor > API/Editor/BlueprintGraph
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UEdGraphNode
- UK2Node
- UK2Node_EditablePinBase
- UK2Node_Event
- UK2Node_ActorBoundEvent
- UK2Node_ComponentBoundEvent
- UK2Node_CustomEvent
- UK2Node_GameplayCueEvent
- UK2Node_InputActionEvent
- UK2Node_InputAxisEvent
- UK2Node_InputAxisKeyEvent
- UK2Node_InputVectorAxisEvent
- UK2Node_InputKeyEvent
- UK2Node_InputTouchEvent
- UK2Node_WidgetAnimationEvent
References
| Module | BlueprintGraph |
| Header | /Engine/Source/Editor/BlueprintGraph/Classes/K2Node_Event.h |
| Include | #include "K2Node_Event.h" |
Syntax
class UK2Node_Event :
public UK2Node_EditablePinBase,
public IK2Node_EventNodeInterface
Variables
| Type | Name | Description | |
|---|---|---|---|
| uint32: 1 | bInternalEvent | If true, this event is internal machinery, and should not be marked BlueprintCallable | |
| uint32: 1 | bOverrideFunction | If true, we are actually overriding this function, not making a new event with a signature that matches | |
| FName | CustomFunctionName | If this is not an override, allow user to specify a name for the function created by this entry point | |
| FMemberReference | EventReference | Reference for the function this event is linked to | |
| uint32 | FunctionFlags | Additional function flags to apply to this function |
Constructors
| Type | Name | Description | |
|---|---|---|---|
UK2Node_Event
(
const FObjectInitializer& ObjectInitializer |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | AreEventNodesIdentical
(
const UK2Node_Event* InNodeA, |
Helper function to identify if two Event nodes are the same | |
| UFunction * | |||
| void | FixupEventReference
(
bool bForce |
||
| FName | |||
| FText | GetLocalizedNetString
(
uint32 NetFlags, |
Returns localized string describing replication settings. | |
| bool | IsCompatibleWithGraph
(
const UEdGraph* TargetGraph |
||
| bool | |||
| bool | IsFunctionEntryCompatible
(
const UK2Node_FunctionEntry* EntryNode |
Checks whether the parameters for this event node are compatible with the specified function entry node | |
| bool | Checks if this event node is implementing an interface event | ||
| bool | |||
| void | UpdateDelegatePin
(
bool bSilent |
Overridden from UK2Node
| Type | Name | Description | |
|---|---|---|---|
| FNodeHandlingFunctor * | CreateNodeHandler
(
FKismetCompilerContext& CompilerContext |
||
| bool | Return whether to draw this node as an entry | ||
| void | ExpandNode
(
FKismetCompilerContext& CompilerContext, |
Expands a node while compiling, which may add additional nodes or delete this node | |
| FName | |||
| FText | Override to provide a default category for specific node types to be listed under. | ||
| void | GetNodeAttributes
(
TArray< TKeyValuePair< FString, FString >>& OutNodeAttributes |
This function returns an arbitrary number of attributes that describe this node for analytics events | |
| void | GetRedirectPinNames
(
const UEdGraphPin& Pin, |
Determines what the possible redirect pin names are | |
| FText | |||
| bool | Return true if adding/removing this node requires calling MarkBlueprintAsStructurallyModified on the Blueprint | ||
| void | Called at the end of ReconstructNode, allows node specific work to be performed |
Overridden from UEdGraphNode
| Type | Name | Description | |
|---|---|---|---|
| void | Allocate default pins for a given node, based only the NodeType, which should already be filled in. | ||
| bool | CanPasteHere
(
const UEdGraph* TargetGraph |
Determine if this node can live in the specified graph | |
| void | FindDiffs
(
UEdGraphNode* OtherNode, |
Gives the node the option to customize how diffs are discovered within it. | |
| FEdGraphNodeDeprecationResponse | GetDeprecationResponse
(
EEdGraphNodeDeprecationType DeprecationType |
Returns the response to use when reporting a deprecation. | |
| FString | Returns the name of the excerpt to display from the specified external documentation link for the graph node Default behavior is to return the class name (including prefix) | ||
| FString | Returns the link used for external documentation for the graph node | ||
| FString | Gets the search string to find references to this node | ||
| FSlateIcon | GetIconAndTint
(
FLinearColor& OutColor |
||
| UObject * | Returns the object that should be focused when double-clicking on this node (the object can be an actor, which selects it in the world, or a node/graph/pin) | ||
| FText | GetKeywords () |
Returns the keywords that should be used when searching for this node | |
| FText | GetNodeTitle
(
ENodeTitleType::Type TitleType |
Gets the name of this node, shown in title bar | |
| FLinearColor | Gets the draw color of a node's title bar | ||
| FText | Gets the tooltip to display when over the node | ||
| bool | Returns true if this node references a deprecated type or member. | ||
| bool | HasExternalDependencies
(
TArray< class UStruct* >* OptionalOutput |
Returns whether or not this node has dependencies on an external structure If OptionalOutput isn't null, it should be filled with the known dependencies objects (Classes, Structures, Functions, etc). | |
| void | PinConnectionListChanged
(
UEdGraphPin* Pin |
Called when the connection list of one of the pins of this node is changed in the editor | |
| void | ValidateNodeDuringCompilation
(
FCompilerResultsLog& MessageLog |
Gives each visual node a chance to do final validation before it's node is harvested for use at runtime. |
Overridden from UObject
| Type | Name | Description | |
|---|---|---|---|
| void | PostDuplicate
(
bool bDuplicateForPIE |
Called after duplication & serialization and before PostLoad. | |
| void | PostLoad () |
Do any object-specific cleanup required immediately after loading an object. | |
| void | Handles reading, writing, and reference collecting using FArchive. |
Overridden from IK2Node_EventNodeInterface
| Type | Name | Description | |
|---|---|---|---|
| TSharedPtr< FEdGraphSchemaAction > | GetEventNodeAction
(
const FText& ActionCategory |
Constants
| Name | Description |
|---|---|
| DelegateOutputName |
Deprecated Variables
| Type | Name | Description | |
|---|---|---|---|
| TSubclassOf< class UObject > | EventSignatureClass_DEPRECATED | Class that the function signature is from. | |
| FName | EventSignatureName_DEPRECATED | Name of function signature that this event implements |