Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions yaml/ufunction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,15 @@ specifiers:
type: flag
position: meta
version: ">= 5.1"
comment: Allows users to change a BlueprintImplementableEvent with no return value from an event into a function.
required: [ BlueprintImplementableEvent ]
comment: |
Can be applied to BlueprintImplementableEvent or BlueprintNativeEvent functions which have no return value to cause
the editor to create a function instead of an event when using the Override feature of the Blueprint editor.
Despite the name, this does not prevent you from using "Convert function to event" after creating the override.
samples:
- |
UFUNCTION(BlueprintImplementableEvent, meta=(ForceAsFunction))
void PreferFunction();
required: [ BlueprintImplementableEvent, BlueprintNativeEvent ]
links:
- [ "Changelist", "https://github.com/EpicGames/UnrealEngine/commit/8942fcd50bf1cb828ccbb9cfd84ee2619f020fce" ]

Expand Down