Skip to content

Commit

Permalink
Parameter editor tooltips for BindOnBPFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 committed Oct 16, 2024
1 parent 3bbfe48 commit 45476e2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ class SML_API URuntimeBlueprintFunctionLibrary : public UBlueprintFunctionLibrar
UFUNCTION(BlueprintCallable, Category = "Widget | Advanced")
static void SetComboBoxFont(UComboBoxString* Box, FSlateFontInfo Font);

/** Allows Binding on BP Function. Function must be implemented in Blueprint */
/**
* Allows Binding on BP (blueprint) Functions. Function must be implemented in Blueprint
* @param Binding Delegate to call when the function is called. In blueprint you usually want to hook this to an "Add Custom Event..."
* @param HookOffsetStart true to execute Binding before normal function body, false to execute after
*/
UFUNCTION(BlueprintCallable, Category= "Widget | Advanced")
static void BindOnBPFunction(const TSubclassOf<UObject> Class, FObjFunctionBind Binding, const FString FunctionName, bool HookOffsetStart);
};

0 comments on commit 45476e2

Please sign in to comment.