Files
UnrealEngineUWP/Engine/Source/Developer/FunctionalTesting/Public/AutomationViewSettings.h
Chris Gagnon 8fc25ea18e Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4676797 by Chris Gagnon in Dev-Editor branch]
2019-01-02 14:54:39 -05:00

57 lines
1.2 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Engine/DataAsset.h"
#include "AutomationViewSettings.generated.h"
UCLASS(BlueprintType)
class UAutomationViewSettings : public UDataAsset
{
GENERATED_BODY()
public:
UAutomationViewSettings()
: AntiAliasing(true)
, MotionBlur(true)
, TemporalAA(true)
, ScreenSpaceReflections(true)
, ScreenSpaceAO(true)
, DistanceFieldAO(true)
, ContactShadows(true)
, EyeAdaptation(true)
, Bloom(true)
{
}
UPROPERTY(EditAnywhere, Category="Rendering")
bool AntiAliasing;
UPROPERTY(EditAnywhere, Category="Rendering")
bool MotionBlur;
UPROPERTY(EditAnywhere, Category="Rendering")
bool TemporalAA;
UPROPERTY(EditAnywhere, Category="Rendering")
bool ScreenSpaceReflections;
UPROPERTY(EditAnywhere, Category="Rendering")
bool ScreenSpaceAO;
UPROPERTY(EditAnywhere, Category="Rendering")
bool DistanceFieldAO;
UPROPERTY(EditAnywhere, Category="Rendering")
bool ContactShadows;
UPROPERTY(EditAnywhere, Category="Rendering")
bool EyeAdaptation;
UPROPERTY(EditAnywhere, Category = "Rendering")
bool Bloom;
};