Adding GetFormatedName() with Bib param

This commit is contained in:
2025-07-08 18:24:26 +02:00
parent 760a764816
commit 9bb5e760f2
2 changed files with 15 additions and 2 deletions

View File

@ -17,6 +17,9 @@ class DTFLUXUTILITIES_API UFTDFluxUtils : public UBlueprintFunctionLibrary
public:
UFUNCTION(BlueprintCallable, Category="DTFlux|Utils", Meta=(Keywords="name, concat, participant"))
static FText GetFormatedName(FDTFluxParticipant& Participant, const int MaxChar = 10,
static FText GetFormatedName(const int& Bib, const int MaxChar = 10,
const FString OverFlowChar = "...");
UFUNCTION(BlueprintCallable, Category="DTFlux|Utils", Meta=(Keywords="name, concat, participant"))
static FText GetParticipantFormatedName(FDTFluxParticipant& Participant, const int MaxChar = 10,
const FString OverFlowChar = "...");
};