Navigation
API > API/Editor > API/Editor/KismetCompiler > API/Editor/KismetCompiler/FKismetCompilerContext
Description
Handles creating a new event node for a given output on a timeline node utilizing the named function
Helper function to create event node for a given pin on a timeline node.
| Name | CreatePinEventNodeForTimelineFunction |
| Type | function |
| Header File | /Engine/Source/Editor/KismetCompiler/Public/KismetCompiler.h |
| Include Path | #include "KismetCompiler.h" |
| Source | /Engine/Source/Editor/KismetCompiler/Private/KismetCompiler.cpp |
void CreatePinEventNodeForTimelineFunction
(
UK2Node_Timeline * TimelineNode,
UEdGraph * SourceGraph,
FName FunctionName,
const FName PinName,
FName ExecFuncName
)
Parameters
| Name | Remarks |
|---|---|
| TimelineNode | The timeline node to create the node event for |
| SourceGraph | The source graph to create the event node in |
| FunctionName | The function to use as the custom function for the event node |
| PinName | The pin name to redirect output from, into the pin of the node event |
| ExecFuncName | The event signature name that the event node implements |