Navigation
API > API/Editor > API/Editor/KismetCompiler > API/Editor/KismetCompiler/FKismetCompilerContext
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FMulticastDelegateProperty * CreateMulticastDelegateVariable
(
const FName Name |
Creates a multicast delegate variable & associated signature graph / Function, use to generate events | KismetCompiler.h | |
FMulticastDelegateProperty * CreateMulticastDelegateVariable
(
const FName Name, |
Creates a multicast delegate variable & associated signature graph / function, use to generate events | KismetCompiler.h |
CreateMulticastDelegateVariable(const FName)
Description
Creates a multicast delegate variable & associated signature graph / Function, use to generate events
Defaults to base MulticastDelegate type. See above version with 'Type' arg for more info.
| Name | CreateMulticastDelegateVariable |
| Type | function |
| Header File | /Engine/Source/Editor/KismetCompiler/Public/KismetCompiler.h |
| Include Path | #include "KismetCompiler.h" |
| Source | /Engine/Source/Editor/KismetCompiler/Private/KismetCompiler.cpp |
FMulticastDelegateProperty * CreateMulticastDelegateVariable
(
const FName Name
)
CreateMulticastDelegateVariable(const FName, const FEdGraphPinType &)
Description
Creates a multicast delegate variable & associated signature graph / function, use to generate events
You must add an ubergraph page containing an 'UK2Node_GeneratedBoundEvent' that corresponds to this delegate to 'GeneratedUbergraphPages' in your 'FKismetCompilerContext'. We do not create this graph / page for you so that graph creation is not coupled to variable creation. We will associate this delegate with your node for you by name.
| Name | CreateMulticastDelegateVariable |
| Type | function |
| Header File | /Engine/Source/Editor/KismetCompiler/Public/KismetCompiler.h |
| Include Path | #include "KismetCompiler.h" |
| Source | /Engine/Source/Editor/KismetCompiler/Private/KismetCompiler.cpp |
FMulticastDelegateProperty * CreateMulticastDelegateVariable
(
const FName Name,
const FEdGraphPinType & Type
)