mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
27 lines
920 B
C++
27 lines
920 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "FortChallengeSetStyle.h"
|
|
#include "AthenaChallengeDisplayLibrary.generated.h"
|
|
|
|
class UImage;
|
|
class UMaterialInstanceDynamic;
|
|
|
|
UCLASS(Blueprintable)
|
|
class FORTNITEUI_API UAthenaChallengeDisplayLibrary : public UBlueprintFunctionLibrary {
|
|
GENERATED_BODY()
|
|
public:
|
|
UAthenaChallengeDisplayLibrary();
|
|
UFUNCTION(BlueprintCallable)
|
|
static FLinearColor GetChallengeStyleLightAccentColor(const FFortChallengeSetStyle& DisplayStyle);
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
static void ApplyChallengeSetStyleColorsToMaterial(const FFortChallengeSetStyle& DisplayStyle, UMaterialInstanceDynamic* StyleMaterial);
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
static void ApplyChallengeSetStyleColorsToImageMaterial(const FFortChallengeSetStyle& DisplayStyle, UImage* ImageWidget);
|
|
|
|
};
|
|
|