Adding GetFormatedName() with Bib param
This commit is contained in:
@ -3,7 +3,17 @@
|
|||||||
|
|
||||||
#include "FTDFluxUtils.h"
|
#include "FTDFluxUtils.h"
|
||||||
|
|
||||||
FText UFTDFluxUtils::GetFormatedName(FDTFluxParticipant& Participant, const int MaxChar, const FString OverFlowChar)
|
#include "DTFluxCoreSubsystem.h"
|
||||||
|
|
||||||
|
FText UFTDFluxUtils::GetFormatedName(const int& Bib, const int MaxChar, const FString OverFlowChar)
|
||||||
|
{
|
||||||
|
UDTFluxCoreSubsystem* CoreSubsystem = GEngine->GetEngineSubsystem<UDTFluxCoreSubsystem>();
|
||||||
|
const FDTFluxParticipant OutParticipant = CoreSubsystem->GetParticipant(Bib);
|
||||||
|
return OutParticipant.GetFormattedNameText(MaxChar, OverFlowChar);
|
||||||
|
}
|
||||||
|
|
||||||
|
FText UFTDFluxUtils::GetParticipantFormatedName(FDTFluxParticipant& Participant, const int MaxChar,
|
||||||
|
const FString OverFlowChar)
|
||||||
{
|
{
|
||||||
return Participant.GetFormattedNameText(MaxChar, OverFlowChar);
|
return Participant.GetFormattedNameText(MaxChar, OverFlowChar);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -17,6 +17,9 @@ class DTFLUXUTILITIES_API UFTDFluxUtils : public UBlueprintFunctionLibrary
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
UFUNCTION(BlueprintCallable, Category="DTFlux|Utils", Meta=(Keywords="name, concat, participant"))
|
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 = "...");
|
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 = "...");
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user