mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
21 lines
551 B
C++
21 lines
551 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortFloatAnimationInfo.h"
|
|
#include "FortLightAnimSet.generated.h"
|
|
|
|
class ULightComponent;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortLightAnimSet {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true))
|
|
ULightComponent* LightComp;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TArray<FFortFloatAnimationInfo> IntensityAnims;
|
|
|
|
FORTNITEGAME_API FFortLightAnimSet();
|
|
};
|
|
|