Exposes a function to Unreal's reflection system
UFUNCTION(BlueprintCallable, Category="Custom Category")
bool MyFunction(int32 MyArg);
Converts a function into an event inside the Blueprint event graph given the following conditions:
void
UFUNCTION(BlueprintImplementableEvent)
void MyFunction(int32 MyArg); // do not define this inside .cpp file
Allows a function to be overriden inside blueprint
// .h file
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
bool MyFunction(int32 MyArg); // Make sure to add *_Implementation when defining the function
// .cpp file
bool UExample::MyFunction_Implementation(int32 MyArg){ // *_Implementation
...
return true;
}
BlueprintCallable // Allows function to be called inside blueprints
BlueprintImplementableEvent // Allows function to become event, Note: function must return void & must only be declared NOT defined in c++
BlueprintNativeEvent // Allows a function to be overriden inside blueprint, Note: function definition inside .cpp must have *_Implementation suffix
Category = "My Category | My Sub Category" // Allows property to be placed in the given category
// Use Syntax UFUNCTION(meta=(...))
DisplayName = "My Function" // Allows function name to be different inside editor
AllowPrivateAccess = "true" // Allows function to be placed inside `private` Access Specifier of the class
BlueprintProtected // Only let's function be invoked in the defining blueprint i.e. Same behaviour as `protected` Access Specifier of classes